X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=Makefile.in;h=36f604640462e8a5a587c30356f777777c6fa6a8;hb=204ff980cc67c2c2c17f35cd87aaba646a9a2111;hp=a1fc43c687075e317cacda6c6f167295c770d659;hpb=87507b49658ceb6812b75605dfdab9f42316206f;p=mod_auth_kerb.cvs%2F.git diff --git a/Makefile.in b/Makefile.in index a1fc43c..36f6046 100644 --- a/Makefile.in +++ b/Makefile.in @@ -13,18 +13,26 @@ CFLAGS = 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.sh "${CPPFLAGS}" "${LDFLAGS}" "${SPNEGO_SRCS}" "${APXS}" "-c" "src/mod_auth_kerb.c" install: - $(APXS) -c -i $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS) + ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SPNEGO_SRCS}" "${APXS}" "-c -i" "src/mod_auth_kerb.c" 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 config.log - $(RM) -rf autom4te.cache src/.libs spnego/.libs + $(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