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) $< -#################################################