summaryrefslogtreecommitdiffstatsabout
path: root/Documentation/Makefile.in
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2004-01-04 03:23:22 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2004-01-04 03:23:22 (GMT)
commite2dfccb52240fd943ec6f1f2b8260f86d24d4cd2 (patch)
treee9576f43acacc69993ab369c0f608cefcedf8ae2 /Documentation/Makefile.in
parent5b0927ae5d90380ac043f66787e253b03d218319 (diff)
update apache.m4 to use -with-apxs instead of --with-apache
got SSL support to compile. added Documentation subdirectory.
Diffstat (limited to 'Documentation/Makefile.in')
-rw-r--r--Documentation/Makefile.in76
1 files changed, 76 insertions, 0 deletions
diff --git a/Documentation/Makefile.in b/Documentation/Makefile.in
new file mode 100644
index 0000000..2d07cfd
--- /dev/null
+++ b/Documentation/Makefile.in
@@ -0,0 +1,76 @@
1# @configure_input@
2
3# Modify these top variables.
4SUBDIRS =
5
6EXTRA_DIST = README documentation.lyx
7
8#Don't modify anything below here
9
10srcdir = @abs_srcdir@
11builddir = @abs_builddir@
12
13STD_DIST = Makefile.in
14
15DISTFILES = $(STD_DIST) $(EXTRA_DIST)
16
17all: all-subdirs
18
19all-subdirs install-subdirs update-subdirs clean-subdirs distclean-subdirs:
20 @otarget=`echo $@|sed s/-subdirs//`; \
21 list=' $(SUBDIRS)'; \
22 for i in $$list; do \
23 if test -d "$$i"; then \
24 target="$$otarget"; \
25 echo "Making $$target in $$i"; \
26 if test "$$i" = "."; then \
27 made_local=yes; \
28 target="local-$$target"; \
29 fi; \
30 (cd $$i && $(MAKE) $$target) || exit 1; \
31 fi; \
32 done; \
33
34include:
35 rm -rf include
36 ln -s @APACHE_INCDIR@ include
37
38install: install-subdirs
39
40update: update-subdirs
41
42clean: clean-subdirs
43
44distclean: clean distclean-subdirs
45 $(RM) Makefile
46
47DESTDIR = @PACKAGE_NAME@-@PACKAGE_VERSION@
48DESTTGZ = $(DESTDIR).tar.gz
49dist:
50 @rm -rf $(DESTDIR); \
51 list=' $(SUBDIRS)'; \
52 for i in $$list; do \
53 if test -d "$$i"; then \
54 target=local-dist; \
55 echo "Making $$target in $$i"; \
56 if test "$$i" = "."; then \
57 made_local=yes; \
58 target="local-dist"; \
59 fi; \
60 NEWDESTDIR=$(builddir)/$(DESTDIR)/$$i; \
61 echo $(NEWDESTDIR); \
62 (cd $$i && $(MAKE) DESTDIR=$(builddir)/$(DESTDIR)/$$i $$target) || exit 1; \
63 fi; \
64 done;
65 if test "$$made_local" != "yes"; then \
66 $(MAKE) "local-dist" || exit 1; \
67 fi
68 tar -zcf $(DESTTGZ) $(DESTDIR)
69 rm -rf $(DESTDIR)
70
71local-dist: $(DISTFILES)
72 mkdir -p $(DESTDIR)
73 cp -dp --parents $(DISTFILES) $(DESTDIR)
74
75.PHONY: include all-subdirs update-subdirs install-subdirs \
76 clean-subdirs distclean-subdirs dist