Conf file is now in source tree
[mod_auth_kerb.git] / Makefile.in
index 9c40491..f6560ee 100644 (file)
@@ -1,33 +1,34 @@
 APXS = @APXS@
-KRB5_CPPFLAGS = @KRB5_CPPFLAGS@
-KRB5_LDFLAGS = @KRB5_LDFLAGS@
-KRB4_CPPFLAGS = @KRB4_CPPFLAGS@
-KRB4_LDFLAGS = @KRB4_LDFLAGS@
-LIB_resolv = @LIB_resolv@
+GSS_CPPFLAGS = @GSS_CPPFLAGS@
+GSS_LDFLAGS = @GSS_LDFLAGS@ @LIBS@
 SPNEGO_SRCS = @SPNEGO_SRCS@
+INSTALL=@INSTALL@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libexecdir=@libexecdir@
+sysconfdir=@sysconfdir@
+libdir=@libdir@
 
-CPPFLAGS = -I. -Ispnegokrb5 $(KRB5_CPPFLAGS) $(KRB4_CPPFLAGS) $(DEFS)
-LDFLAGS = $(KRB5_LDFLAGS) $(KRB4_LDFLAGS) $(LIB_resolv)
+
+CPPFLAGS = -I. -Ispnegokrb5 $(GSS_CPPFLAGS) $(DEFS)
+LDFLAGS = $(GSS_LDFLAGS)
 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'}
+SRCS = mod_auth_gssapi.c gss.c $(SPNEGO_SRCS)
 
-all: src/mod_auth_kerb.so
+all: mod_auth_gssapi.la
 
-src/mod_auth_kerb.so: src/mod_auth_kerb.c $(SPNEGO_SRCS)
-       $(APXS) -c $(APXS_CPPFLAGS) $(APXS_CFLAGS) $(APXS_LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS)
+mod_auth_gssapi.la: $(SRCS)
+       ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SRCS}" "${APXS} -c"
 
-install:
-       $(APXS) -c -i $(APXS_CPPFLAGS) $(APXS_CFLAGS) $(APXS_LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS)
+install: mod_auth_gssapi.la
+       $(INSTALL) -d $(DESTDIR)${libdir}/apache2/modules
+       $(INSTALL) -d $(DESTDIR)${sysconfdir}/apache2/mods-available
+       ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" $^ "${APXS} -i -A  -S LIBEXECDIR=$(DESTDIR)${libdir}/apache2/modules -S SYSCONFDIR=$(DESTDIR)${sysconfdir}/apache2 -n auth_gssapi"
 
 clean:
-       for i in . src spnegokrb5; do \
-               $(RM) $$i/*.{o,so,a,la,lo,slo} core; \
+       for i in . spnegokrb5; do \
+               (cd $$i && $(RM) *.o *.so *.a *.la *.lo *.slo); \
                $(RM) -rf $$i/.libs; \
        done
 
@@ -35,11 +36,7 @@ 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
+dist-gzip:
+       git archive  --prefix mod_auth_gssapi/ HEAD |gzip -9 >@PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.gz
 
-.PHONY: all install clean distclean
+.PHONY: all install clean distclean dist-gzip