Conf file is now in source tree
[mod_auth_kerb.cvs/.git] / Makefile.in
index 367da01..f6560ee 100644 (file)
@@ -1,29 +1,42 @@
 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 =
 
-all: src/mod_auth_kerb.so
+SRCS = mod_auth_gssapi.c gss.c $(SPNEGO_SRCS)
+
+all: mod_auth_gssapi.la
 
-src/mod_auth_kerb.so: src/mod_auth_kerb.c $(SPNEGO_SRCS)
-       $(APXS) -c $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/mod_auth_kerb.c $(SPNEGO_SRCS)
+mod_auth_gssapi.la: $(SRCS)
+       ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SRCS}" "${APXS} -c"
 
-install:
-       $(APXS) -c -i $(CPPFLAGS) $(CFLAGS) $(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:
-       $(RM) *.o *.so *.a *.la *.lo *.slo core
-       $(RM) src/*.{o,so,a,la,lo,slo}
+       for i in . spnegokrb5; do \
+               (cd $$i && $(RM) *.o *.so *.a *.la *.lo *.slo); \
+               $(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
+
+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