1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
APXS=@APXS@
CPPFLAGS=@CPPFLAGS@
LDFLAGS=@LDFLAGS@
LIBS=@LIBS@
TLS=@TLS@
ACTIVATE=@ACTIVATE@
TARGET=.libs/mod_ldap_userdir.so
$(TARGET): Makefile mod_ldap_userdir.c
$(APXS) -c $(CPPFLAGS) $(LDFLAGS) $(LIBS) $(TLS) mod_ldap_userdir.c
install: $(TARGET)
$(APXS) -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -in ldap_userdir $(ACTIVATE) $(TARGET)
clean:
rm -rf *.lo *.la *.slo *.so *.o .libs/ *~ core
distclean: clean
rm -rf Makefile config.status config.cache config.log config.h autom4te.cache/
configure: configure.in
autoconf
config.status: configure
./config.status --recheck
config.h.in: configure.in
autoheader
config.h: config.h.in config.status
./config.status
Makefile: Makefile.in config.status
./config.status
|