summaryrefslogtreecommitdiff
path: root/src/man
diff options
context:
space:
mode:
authorBruce Momjian1998-04-06 00:32:26 +0000
committerBruce Momjian1998-04-06 00:32:26 +0000
commit1e801a8f16ae0b308ac3aea88dddcb676f412580 (patch)
tree8550c33916f565375f815c7e6c1826f620778374 /src/man
parent2dfee9345773e6ac8809396bf99db538e134fea8 (diff)
Hi,
Attached you'll find a (big) patch that fixes make dep and make depend in all Makefiles where I found it to be appropriate. It also removes the dependency in Makefile.global for NAMEDATALEN and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh a little smarter. This no longer requires initdb.sh that is turned into initdb with a sed script when installing Postgres, hence initdb.sh should be renamed to initdb (after the patch has been applied :-) ) This patch is against the 6.3 sources, as it took a while to complete. Please review and apply, Cheers, Jeroen van Vianen
Diffstat (limited to 'src/man')
-rw-r--r--src/man/Makefile18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/man/Makefile b/src/man/Makefile
index bd036bdb614..d5be452208b 100644
--- a/src/man/Makefile
+++ b/src/man/Makefile
@@ -8,28 +8,26 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/man/Attic/Makefile,v 1.3 1996/11/20 22:53:49 momjian Exp $
+# $Header: /cvsroot/pgsql/src/man/Attic/Makefile,v 1.4 1998/04/06 00:31:52 momjian Exp $
#
#-------------------------------------------------------------------------
SRCDIR=..
include ../Makefile.global
-install-man:
+install:
-mkdir -p $(POSTMANDIR)
- -mkdir $(POSTMANDIR)/man1
- -mkdir $(POSTMANDIR)/man3
- -mkdir $(POSTMANDIR)/man5
- -mkdir $(POSTMANDIR)/manl
+ -mkdir -p $(POSTMANDIR)/man1
+ -mkdir -p $(POSTMANDIR)/man3
+ -mkdir -p $(POSTMANDIR)/man5
+ -mkdir -p $(POSTMANDIR)/manl
cp *.1* $(POSTMANDIR)/man1
cp *.3* $(POSTMANDIR)/man3
cp *.5* $(POSTMANDIR)/man5
cp *.l* $(POSTMANDIR)/manl
-install:: install-man
-
clean:
- # do nothing
all:
- # do nothing
+
+dep depend: