aboutsummaryrefslogtreecommitdiff
path: root/src/tests/dejagnu/Makefile.in
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1995-08-26 22:25:20 +0000
committerEzra Peisach <epeisach@mit.edu>1995-08-26 22:25:20 +0000
commit13955e8f42c61f98e34d5f410e48f4ea93ae2193 (patch)
tree601a68998ddf465d5acb9b163ba814a8640930bb /src/tests/dejagnu/Makefile.in
parentc5903c74334d6666132612933854c9252d88244c (diff)
downloadkrb5-13955e8f42c61f98e34d5f410e48f4ea93ae2193.zip
krb5-13955e8f42c61f98e34d5f410e48f4ea93ae2193.tar.gz
krb5-13955e8f42c61f98e34d5f410e48f4ea93ae2193.tar.bz2
Add t_inetd.c to the source tree. This program simulates the starting of
a daemon from inetd by binding to a socket and then execing the desired program with specified arguments. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6599 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/dejagnu/Makefile.in')
-rw-r--r--src/tests/dejagnu/Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/tests/dejagnu/Makefile.in b/src/tests/dejagnu/Makefile.in
index 9ca7aa4..8d20ba0 100644
--- a/src/tests/dejagnu/Makefile.in
+++ b/src/tests/dejagnu/Makefile.in
@@ -8,5 +8,13 @@ check:: check-$(RUNTEST)
check-::
@echo "Dejagnu is not installed on this system. No tests run."
-check-runtest::
+check-runtest:: t_inetd
$(RUNTEST) --tool krb --srcdir $(srcdir) $(RUNTESTFLAGS)
+
+CFLAGS = $(CCOPTS) $(DEFS)
+
+t_inetd:: t_inetd.o $(DEPLIBS)
+ $(LD) $(LDFLAGS) $(LDARGS) -o t_inetd t_inetd.o -lcom_err
+
+clean::
+ $(RM) t_inetd t_inetd.o