summaryrefslogtreecommitdiffstats
path: root/src/tests/verify
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1994-09-15 22:34:43 +0000
committerTheodore Tso <tytso@mit.edu>1994-09-15 22:34:43 +0000
commita6314ba4bd49a043d3340d57a7b2ebb6baa1faf5 (patch)
treeaa6563e70c84e2e93561924926d07b0c2ac3a59b /src/tests/verify
parent161fb64d7b34b57e0ec3b2340d4d4dcdaebee525 (diff)
downloadkrb5-a6314ba4bd49a043d3340d57a7b2ebb6baa1faf5.tar.gz
krb5-a6314ba4bd49a043d3340d57a7b2ebb6baa1faf5.tar.xz
krb5-a6314ba4bd49a043d3340d57a7b2ebb6baa1faf5.zip
Put the tests directory under autoconf
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4256 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/verify')
-rw-r--r--src/tests/verify/Makefile.in24
-rw-r--r--src/tests/verify/configure.in11
2 files changed, 35 insertions, 0 deletions
diff --git a/src/tests/verify/Makefile.in b/src/tests/verify/Makefile.in
new file mode 100644
index 000000000..6a32771b3
--- /dev/null
+++ b/src/tests/verify/Makefile.in
@@ -0,0 +1,24 @@
+CFLAGS = $(CCOPTS) $(DEFS)
+LDFLAGS = -g
+
+ISODELIB=@ISODELIB@
+COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a
+DBMLIB=
+KDBLIB=$(TOPLIBD)/libkdb5.a
+
+all:: kdb5_verify
+
+KLIB = $(KDBLIB) $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB)
+
+kdb5_verify: kdb5_verify.o
+ $(CC) $(CFLAGS) -o kdb5_verify kdb5_verify.o $(KLIB) $(LIBS)
+
+kdb5_verify.o: $(srcdir)/kdb5_verify.c
+
+all:: kdb5_verify
+
+install::
+
+clean::
+ $(RM) kdb5_verify.o kdb5_verify
+
diff --git a/src/tests/verify/configure.in b/src/tests/verify/configure.in
new file mode 100644
index 000000000..591e3d663
--- /dev/null
+++ b/src/tests/verify/configure.in
@@ -0,0 +1,11 @@
+AC_INIT(kdb5_verify.c)
+WITH_CCOPTS
+CONFIG_RULES
+AC_SET_BUILDTOP
+AC_PROG_INSTALL
+AC_HAVE_LIBRARY(socket)
+AC_HAVE_LIBRARY(nsl)
+KRB_INCLUDE
+ISODE_INCLUDE
+WITH_KRB5ROOT
+AC_OUTPUT(Makefile,[EXTRA_RULES])