summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2004-07-30 12:26:40 +0000
committerPeter Eisentraut <peter_e@gmx.net>2004-07-30 12:26:40 +0000
commitadf57cd7e2dca8ded31645e2f2b2deb5e4515c83 (patch)
tree72c1613e63e10b296d23cc402f776e25f7f72326 /GNUmakefile.in
parentf82d99be7ef98bc252bb90da05801b4a2b51fad8 (diff)
downloadpostgresql-adf57cd7e2dca8ded31645e2f2b2deb5e4515c83.tar.gz
PostgreSQL extension makefile framework ("pgxs"), by Fabien Coelho, with
some massaging by Peter Eisentraut. This is basically a simple generalization of the existing contrib makefiles.
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r--GNUmakefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index b927866ed4..44c0ad6304 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -1,7 +1,7 @@
#
# PostgreSQL top level makefile
#
-# $PostgreSQL: pgsql/GNUmakefile.in,v 1.39 2004/06/13 21:51:36 petere Exp $
+# $PostgreSQL: pgsql/GNUmakefile.in,v 1.40 2004/07/30 12:26:39 petere Exp $
#
subdir =
@@ -11,16 +11,19 @@ include $(top_builddir)/src/Makefile.global
all:
$(MAKE) -C doc all
$(MAKE) -C src all
+ $(MAKE) -C config all
@echo "All of PostgreSQL successfully made. Ready to install."
install:
$(MAKE) -C doc install
$(MAKE) -C src install
+ $(MAKE) -C config install
@echo "PostgreSQL installation complete."
installdirs uninstall distprep:
$(MAKE) -C doc $@
$(MAKE) -C src $@
+ $(MAKE) -C config $@
install-all-headers:
$(MAKE) -C src $@
@@ -31,6 +34,7 @@ clean:
$(MAKE) -C doc $@
$(MAKE) -C contrib $@
$(MAKE) -C src $@
+ $(MAKE) -C config $@
# Garbage from autoconf:
@rm -rf autom4te.cache/
@@ -39,6 +43,7 @@ clean:
distclean maintainer-clean:
-$(MAKE) -C doc $@
-$(MAKE) -C contrib $@
+ -$(MAKE) -C config $@
-$(MAKE) -C src $@
-rm -f config.cache config.log config.status GNUmakefile
# Garbage from autoconf: