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
35
36
37
38
39
40
|
--- Makefile.in Mon Aug 11 12:46:57 2003
+++ Makefile.in Fri Dec 17 21:08:34 2004
@@ -124,3 +124,3 @@
SERVER_ROOT = @SERVER_ROOT@
-htdocsdir = $(SERVER_ROOT)/htdocs
+htdocsdir = $(prefix)/share/@PACKAGE@@VERSION@
@@ -198,3 +198,3 @@
CONFIGDIR = @CONFIGDIR@
-mkinstalldirs = $(SHELL) $(CONFIGDIR)/mkinstalldirs
+mkinstalldirs = mkdir -p
CONFIG_CLEAN_FILES =
@@ -220,3 +220,3 @@
-all: binaries libraries doc
+all: libraries doc
@@ -236,3 +236,3 @@
-install: all install-binaries install-libraries install-doc
+install: all install-libraries install-doc
@@ -330,1 +330,1 @@
- $(INSTALL_DATA) $(srcdir)/doc/httpd.1 $(mandir)/man1/httpd.1
+ $(INSTALL_DATA) $(srcdir)/doc/httpd.1 $(mandir)/man1/tclhttpd.1
@@ -335,7 +335,4 @@
install-doc: install-htdocs
- @echo "Installing man page"
- $(mkinstalldirs) $(DESTDIR)$(mandir)/man1
- $(INSTALL_DATA) $(srcdir)/doc/httpd.1 $(DESTDIR)$(mandir)/man1/httpd.1
@echo "Installing README"
$(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(SERVER_ROOT)
@@ -343,5 +343,5 @@
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pkglibdir) $(DESTDIR)$(cryptlibdir) $(DESTDIR)$(prefix)/bin $(DESTDIR)$(htdocsdir) $(DESTDIR)$(customdir)
+ $(mkinstalldirs) $(DESTDIR)$(pkglibdir) $(DESTDIR)$(prefix)/bin $(DESTDIR)$(htdocsdir) $(DESTDIR)$(customdir)
clean:
|