From: kouril Date: Tue, 4 Nov 2003 14:08:22 +0000 (+0000) Subject: Remove Makefiles which are generated by the autools stuff X-Git-Tag: v5.0-rc3~13 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_kerb.git;a=commitdiff_plain;h=82b7b84a25d82101e4c706ef65aa284a24a51256 Remove Makefiles which are generated by the autools stuff --- diff --git a/Makefile b/Makefile deleted file mode 100644 index 4f27f76..0000000 --- a/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -include makefile.include - -KRB5_CPPFLAGS = `$(KRB5_ROOT)/bin/krb5-config --cflags gssapi` -KRB5_LDFLAGS = `$(KRB5_ROOT)/bin/krb5-config --libs gssapi` - -KRB4_CPPFLAGS = -I$(KRB4_ROOT)/include -I$(KRB4_ROOT)/include/kerberosIV \ - -I$(KRB5_ROOT)/include/kerberosIV - -CPPFLAGS = $(KRB5_CPPFLAGS) $(KRB4_CPPFLAGS) $(DEFS) -LDFLAGS = -Lspnegokrb5 -lspnegokrb5 $(KRB5_LDFLAGS) -lresolv - -ifndef APXS - APXS = apxs -endif - -ifdef SPNEGO_ONLY - TARGET = libspnegokrb5 -else - TARGET = modauthkerb -endif - -all: $(TARGET) - -libspnegokrb5: - (cd spnegokrb5 && make) - -modauthkerb: libspnegokrb5 - $(APXS) -c -i $(CPPFLAGS) $(LDFLAGS) src/mod_auth_kerb.c - -clean: - (cd spnegokrb5 && make clean) - $(RM) *.o *.so *.a *.la *.lo *.slo core - $(RM) src/*.{o,so,a,la,lo,slo} diff --git a/spnegokrb5/Makefile b/spnegokrb5/Makefile deleted file mode 100644 index 337926a..0000000 --- a/spnegokrb5/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -include ../makefile.include - -CPPFLAGS = -I. -I$(KRB5_ROOT)/include -I$(KRB5_ROOT)/include/gssapi -CFLAGS = -Wall -g - -gen_files = \ - asn1_MechType.c \ - asn1_MechTypeList.c \ - asn1_ContextFlags.c \ - asn1_NegTokenInit.c \ - asn1_NegTokenTarg.c - -asn1_files = \ - der_get.c \ - der_put.c \ - der_free.c \ - der_length.c \ - der_copy.c \ - timegm.c - -spnegokrb5_files = \ - init_sec_context.c \ - accept_sec_context.c \ - encapsulate.c \ - decapsulate.c \ - external.c - -all: libspnegokrb5.a - -libspnegokrb5.a: $(gen_files:.c=.o) $(asn1_files:.c=.o) $(spnegokrb5_files:.c=.o) - ar -rscu libspnegokrb5.a $^ - -test: - $(CC) -g -o test -I/usr/heimdal-0.6/include test.c libspnegokrb5.a -L/usr/heimdal-0.6/lib -lgssapi - -clean: - $(RM) *.o core libspnegokrb5.a