## ## Makefile.apxs -- Feature test procedures for mod_ftp Apache module ## ## Do not use this target; ./configure.apxs from the mod_ftp dir root ## # top_builddir and top_srcdir are misnomers, because build/*.mk # scripts expect it them be the parent of the build directory, # and fail to trust the installbuilddir. exp_installbuilddir=$(shell $(APXS) -q exp_installbuilddir) top_srcdir=$(installbuilddir)/.. top_builddir=$(installbuilddir)/.. ftp_builddir=.. ftp_srcdir=.. builddir=. srcdir=. CLEAN_TARGETS = conftest_fchmod.c conftest_arpa_ftp_h.c *.loT TARGETS = conftest_fchmod conftest_arpa_ftp_h PROGRAM_LDADD = PROGRAM_DEPENDENCIES = include $(exp_installbuilddir)/rules.mk conftest_fchmod: conftest_fchmod.lo $(LINK) conftest_fchmod.lo conftest_arpa_ftp_h: conftest_arpa_ftp_h.lo @echo "success" > $@ conftest_fchmod.c: @echo "#include " > $@ @echo "#include " >> $@ @echo "int main() { return fchmod(2, 0644); }" >> $@ conftest_arpa_ftp_h.c: @echo "#include " > $@