removed compilation warnings
[mod_auth_kerb.git] / Makefile.in
index b15509c..36f6046 100644 (file)
@@ -13,10 +13,10 @@ 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 \
@@ -28,4 +28,11 @@ distclean: clean
        $(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