summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-10-06 08:50:02 +0000
committerBruce Momjian <bruce@momjian.us>2004-10-06 08:50:02 +0000
commit513e89b44b86abcd5dce44f51f424fbaa2e0126e (patch)
tree57ed31076649f0f460c38104db0fd7ad81d1ad03 /GNUmakefile.in
parentd42d4272524f643ee6da2836749a37370928b3ad (diff)
downloadpostgresql-513e89b44b86abcd5dce44f51f424fbaa2e0126e.tar.gz
please find attached an alternate submission which addresses open item
"make pgxs install by default". It is up to the committers to chose. (1) there is only one "install" target. no more "install-all-headers". it simplifies/changes several makefiles. (2) the documentation reflects the change. (3) a minor fix on pgxs to use a nicer patch without a double slash. Fabien Coelho
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r--GNUmakefile.in11
1 files changed, 4 insertions, 7 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index 44c0ad6304..581628f77e 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -1,7 +1,7 @@
#
# PostgreSQL top level makefile
#
-# $PostgreSQL: pgsql/GNUmakefile.in,v 1.40 2004/07/30 12:26:39 petere Exp $
+# $PostgreSQL: pgsql/GNUmakefile.in,v 1.41 2004/10/06 08:49:58 momjian Exp $
#
subdir =
@@ -15,9 +15,9 @@ all:
@echo "All of PostgreSQL successfully made. Ready to install."
install:
- $(MAKE) -C doc install
- $(MAKE) -C src install
- $(MAKE) -C config install
+ $(MAKE) -C doc $@
+ $(MAKE) -C src $@
+ $(MAKE) -C config $@
@echo "PostgreSQL installation complete."
installdirs uninstall distprep:
@@ -25,9 +25,6 @@ installdirs uninstall distprep:
$(MAKE) -C src $@
$(MAKE) -C config $@
-install-all-headers:
- $(MAKE) -C src $@
-
# clean, distclean, etc should apply to contrib too, even though
# it's not built by default
clean: