summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-06-07 23:09:18 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-06-07 23:09:18 +0000
commitef0c80ac23744bef1a6b7abc73d47dcf3c0dab5b (patch)
tree2025d989d73834bc3d3788f540d293af1be9fa3d /GNUmakefile.in
parentd42f9b59e93f5b85cb1f7b31f192e8acebfa1e12 (diff)
downloadpostgresql-ef0c80ac23744bef1a6b7abc73d47dcf3c0dab5b.tar.gz
Ouch, that should be `$(MAKE) -C', not `make -C' ...
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r--GNUmakefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index f54997da42..3f5929d7e4 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -1,7 +1,7 @@
#
# PostgreSQL top level makefile
#
-# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1 2000/06/06 22:00:45 petere Exp $
+# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.2 2000/06/07 23:09:18 petere Exp $
#
srcdir = @srcdir@
@@ -12,18 +12,18 @@ top_builddir = .
all:
- make -C src all
+ $(MAKE) -C src all
@echo "All of PostgreSQL successfully made. Ready to install."
install:
- make -C src install
+ $(MAKE) -C src install
@cat $(srcdir)/register.txt
clean:
- make -C src clean
+ $(MAKE) -C src clean
distclean:
- make -C src distclean
+ $(MAKE) -C src distclean
-rm -f config.cache config.log config.status GNUmakefile