summaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1994-09-30 17:17:16 +0000
committerTheodore Tso <tytso@mit.edu>1994-09-30 17:17:16 +0000
commitfb7aa29eaac5f11b17d62e2e458ea1656a1dd081 (patch)
treefb6fd21b25cdf5dce645bb4a9be84ac3b9e95c5d /src/tests
parentcf955dddfd8b200ac97216d6333c942734edab4f (diff)
downloadkrb5-fb7aa29eaac5f11b17d62e2e458ea1656a1dd081.tar.gz
krb5-fb7aa29eaac5f11b17d62e2e458ea1656a1dd081.tar.xz
krb5-fb7aa29eaac5f11b17d62e2e458ea1656a1dd081.zip
configure now generates the makefile
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4405 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/asn.1/Makefile43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/tests/asn.1/Makefile b/src/tests/asn.1/Makefile
deleted file mode 100644
index bfaf5a5f6f..0000000000
--- a/src/tests/asn.1/Makefile
+++ /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) $<
-#################################################