removed compilation warnings
[mod_auth_kerb.git] / Makefile.in
index fd89e7b..36f6046 100644 (file)
@@ -1,23 +1,38 @@
-###
-# Makefile.in for mod_auth_kerb
-###
-
 APXS = @APXS@
-CFLAGS = -I. @CFLAGS@
-LDFLAGS = @LDFLAGS@
-LIBS = @LIBS@
-SUBDIRS = src
-MAKE_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; $(MAKE) $@ ) ; done
+KRB5_CPPFLAGS = @KRB5_CPPFLAGS@
+KRB5_LDFLAGS = @KRB5_LDFLAGS@
+KRB4_CPPFLAGS = @KRB4_CPPFLAGS@
+KRB4_LDFLAGS = @KRB4_LDFLAGS@
+LIB_resolv = @LIB_resolv@
+SPNEGO_SRCS = @SPNEGO_SRCS@
+
+CPPFLAGS = -I. -Ispnegokrb5 $(KRB5_CPPFLAGS) $(KRB4_CPPFLAGS) $(DEFS)
+LDFLAGS = $(KRB5_LDFLAGS) $(KRB4_LDFLAGS) $(LIB_resolv)
+CFLAGS =
+
+all: src/mod_auth_kerb.so
 
-all:
-       @$(MAKE_SUBDIR)
+src/mod_auth_kerb.so: src/mod_auth_kerb.c $(SPNEGO_SRCS)
+       ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SPNEGO_SRCS}" "${APXS}" "-c" "src/mod_auth_kerb.c"
 
 install:
-       @$(MAKE_SUBDIR)
+       ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SPNEGO_SRCS}" "${APXS}" "-c -i" "src/mod_auth_kerb.c"
 
 clean:
-       @$(MAKE_SUBDIR)
+       for i in . src spnegokrb5; do \
+               $(RM) $$i/*.{o,so,a,la,lo,slo} core; \
+               $(RM) -rf $$i/.libs; \
+       done
 
 distclean: clean
-       @$(MAKE_SUBDIR)
-       /bin/rm -f Makefile config.h config.status config.cache config.log
+       $(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