X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=Makefile.in;h=9c40491b9b34618b5cefbfc97943d8a03cafe60a;hb=69a14de88d66ae6b447bf4ef49f470ab0d3bb9c7;hp=2cb12d5aa7bd8958df95e63c4520fbcf4e4024ed;hpb=a4bc2e523464ab6bb90652b6a2030836b7dd642f;p=mod_auth_kerb.cvs%2F.git diff --git a/Makefile.in b/Makefile.in index 2cb12d5..9c40491 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,21 +10,36 @@ CPPFLAGS = -I. -Ispnegokrb5 $(KRB5_CPPFLAGS) $(KRB4_CPPFLAGS) $(DEFS) LDFLAGS = $(KRB5_LDFLAGS) $(KRB4_LDFLAGS) $(LIB_resolv) CFLAGS = +# Use these assignements instead of the default ones if your're building on BSD +# systems. A 'if' statemet would be better, of course. +#APXS_CPPFLAGS != [ -n "${CPPFLAGS}" ] && echo ${CPPFLAGS} | sed -e 's/\([^ ]*\)/-Wc,\1/g' +#APXS_LDFLAGS != [ -n "${LDFLAGS}" ] && echo ${LDFLAGS} | sed -e 's/\([^ ]*\)/-Wl,\1/g' +APXS_CPPFLAGS = ${shell [ -n "${CPPFLAGS}" ] && echo ${CPPFLAGS} | sed -e 's/\([^ ]*\)/-Wc,\1/g'} +APXS_LDFLAGS = ${shell [ -n "${LDFLAGS}" ] && echo ${LDFLAGS} | sed -e 's/\([^ ]*\)/-Wl,\1/g'} + all: src/mod_auth_kerb.so src/mod_auth_kerb.so: src/mod_auth_kerb.c $(SPNEGO_SRCS) - $(APXS) -c $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS) + $(APXS) -c $(APXS_CPPFLAGS) $(APXS_CFLAGS) $(APXS_LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS) install: - $(APXS) -c -i $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS) + $(APXS) -c -i $(APXS_CPPFLAGS) $(APXS_CFLAGS) $(APXS_LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS) clean: for i in . src spnegokrb5; do \ $(RM) $$i/*.{o,so,a,la,lo,slo} core; \ + $(RM) -rf $$i/.libs; \ done distclean: clean - $(RM) config.h config.status Makefile configure config.log - $(RM) -rf autom4te.cache src/.libs + $(RM) config.h config.status Makefile config.log + $(RM) -rf autom4te.cache + +make_release: + echo "Did you increase version numbers?" + autoconf + $(RM) -rf autom4te.cache + $(RM) -rf .cvsignore spnegokrb5/.cvsignore src/.cvsignore + $(RM) -rf CVS spnegokrb5/CVS src/CVS .PHONY: all install clean distclean