Ouch, that should be $(MAKE) -C', not make -C' ...

This commit is contained in:
Peter Eisentraut 2000-06-07 23:09:18 +00:00
parent d42f9b59e9
commit ef0c80ac23

View File

@ -1,7 +1,7 @@
# #
# PostgreSQL top level makefile # 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@ srcdir = @srcdir@
@ -12,18 +12,18 @@ top_builddir = .
all: all:
make -C src all $(MAKE) -C src all
@echo "All of PostgreSQL successfully made. Ready to install." @echo "All of PostgreSQL successfully made. Ready to install."
install: install:
make -C src install $(MAKE) -C src install
@cat $(srcdir)/register.txt @cat $(srcdir)/register.txt
clean: clean:
make -C src clean $(MAKE) -C src clean
distclean: distclean:
make -C src distclean $(MAKE) -C src distclean
-rm -f config.cache config.log config.status GNUmakefile -rm -f config.cache config.log config.status GNUmakefile