diff options
author | Edward Rudd | 2004-01-04 03:23:22 +0000 |
---|---|---|
committer | Edward Rudd | 2004-01-04 03:23:22 +0000 |
commit | e2dfccb52240fd943ec6f1f2b8260f86d24d4cd2 (patch) | |
tree | e9576f43acacc69993ab369c0f608cefcedf8ae2 /contrib/Makefile.in | |
parent | 5b0927ae5d90380ac043f66787e253b03d218319 (diff) |
update apache.m4 to use -with-apxs instead of --with-apache
got SSL support to compile.
added Documentation subdirectory.
Diffstat (limited to 'contrib/Makefile.in')
-rw-r--r-- | contrib/Makefile.in | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/contrib/Makefile.in b/contrib/Makefile.in index ca70e2f..c40a711 100644 --- a/contrib/Makefile.in +++ b/contrib/Makefile.in | |||
@@ -3,7 +3,7 @@ | |||
3 | # Modify these top variables. | 3 | # Modify these top variables. |
4 | SUBDIRS = | 4 | SUBDIRS = |
5 | 5 | ||
6 | EXTRA_DIST = README documentation.lyx | 6 | EXTRA_DIST = README mysql_import_combined_log.pl |
7 | 7 | ||
8 | #Don't modify anything below here | 8 | #Don't modify anything below here |
9 | 9 | ||
@@ -14,7 +14,7 @@ STD_DIST = Makefile.in | |||
14 | 14 | ||
15 | DISTFILES = $(STD_DIST) $(EXTRA_DIST) | 15 | DISTFILES = $(STD_DIST) $(EXTRA_DIST) |
16 | 16 | ||
17 | all: $(TARGET) all-subdirs | 17 | all: all-subdirs |
18 | 18 | ||
19 | all-subdirs install-subdirs update-subdirs clean-subdirs distclean-subdirs: | 19 | all-subdirs install-subdirs update-subdirs clean-subdirs distclean-subdirs: |
20 | @otarget=`echo $@|sed s/-subdirs//`; \ | 20 | @otarget=`echo $@|sed s/-subdirs//`; \ |
@@ -36,7 +36,6 @@ include: | |||
36 | ln -s @APACHE_INCDIR@ include | 36 | ln -s @APACHE_INCDIR@ include |
37 | 37 | ||
38 | install: install-subdirs | 38 | install: install-subdirs |
39 | @APXS_BIN@ -i -a -n $(subst mod_,,@PACKAGE_NAME@) $(TARGET) | ||
40 | 39 | ||
41 | update: update-subdirs | 40 | update: update-subdirs |
42 | 41 | ||
@@ -45,7 +44,7 @@ clean: clean-subdirs | |||
45 | distclean: clean distclean-subdirs | 44 | distclean: clean distclean-subdirs |
46 | $(RM) Makefile | 45 | $(RM) Makefile |
47 | 46 | ||
48 | DESTDIR = @PACKAGE_TARNAME@-@PACKAGE_VERSION@ | 47 | DESTDIR = @PACKAGE_NAME@-@PACKAGE_VERSION@ |
49 | DESTTGZ = $(DESTDIR).tar.gz | 48 | DESTTGZ = $(DESTDIR).tar.gz |
50 | dist: | 49 | dist: |
51 | @rm -rf $(DESTDIR); \ | 50 | @rm -rf $(DESTDIR); \ |
@@ -73,14 +72,5 @@ local-dist: $(DISTFILES) | |||
73 | mkdir -p $(DESTDIR) | 72 | mkdir -p $(DESTDIR) |
74 | cp -dp --parents $(DISTFILES) $(DESTDIR) | 73 | cp -dp --parents $(DISTFILES) $(DESTDIR) |
75 | 74 | ||
76 | $(builddir)/.deps: depend | ||
77 | |||
78 | depend: $(SOURCES) $(HEADERS) | ||
79 | if test -n "`ls $(srcdir)/*.c 2> /dev/null`"; then \ | ||
80 | $(CC) -MM -MT $(TARGET) -I@APACHE_INCDIR@ $(INCLUDES) $(srcdir)/*.c > $(builddir)/.deps || true; \ | ||
81 | fi | ||
82 | |||
83 | include $(builddir)/.deps | ||
84 | |||
85 | .PHONY: include all-subdirs update-subdirs install-subdirs \ | 75 | .PHONY: include all-subdirs update-subdirs install-subdirs \ |
86 | clean-subdirs distclean-subdirs dist | 76 | clean-subdirs distclean-subdirs dist |