configure now generates the makefile
authorTheodore Tso <tytso@mit.edu>
Fri, 30 Sep 1994 17:17:16 +0000 (17:17 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 30 Sep 1994 17:17:16 +0000 (17:17 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4405 dc483132-0cff-0310-8789-dd5450dbe970

src/tests/asn.1/Makefile [deleted file]

diff --git a/src/tests/asn.1/Makefile b/src/tests/asn.1/Makefile
deleted file mode 100644 (file)
index bfaf5a5..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-CC = cc
-CCFLAGS = -g -I../../include
-
-COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a
-DBMLIB=
-
-KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB)
-DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB)
-
-all: krb5_encode_test krb5_decode_test
-
-ENCOBJS = krb5_encode_test.o ktest.o ktest_equal.o utility.o asn1buf.o
-
-krb5_encode_test: $(ENCOBJS) $(DEPKLIB)
-       $(CC) $(CCFLAGS) -o krb5_encode_test $(ENCOBJS) $(KLIB)
-
-DECOBJS = krb5_decode_test.o ktest.o ktest_equal.o
-
-krb5_decode_test: $(DECOBJS) $(DEPKLIB)
-       $(CC) $(CCFLAGS) -o krb5_decode_test $(DECOBJS) $(KLIB)
-
-clean:
-       rm -f *~ *.o krb5_encode_test krb5_decode_test
-
-
-################ Dependencies ################
-asn1buf.o: asn1buf.h
-asn1buf.h: krbasn1.h
-krb5_decode_test.o: ktest.h utility.h ktest_equal.h debug.h
-krb5_encode_test.o: utility.h krb5_encode_test_body.c
-krb5_encode_test_body.o: ktest.h debug.h
-ktest.o: ktest.h utility.h
-ktest_equal.o: ktest_equal.h
-utility.o: utility.h
-utility.h: krbasn1.h asn1buf.h
-##############################################
-
-################ Inference Rules ################
-.SUFFIXES: .o .c
-
-.c.o:
-       $(CC) -c $(CCFLAGS) $<
-#################################################