8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$(MAKE) -C', not
1 parent d42f9b5 commit ef0c80aCopy full SHA for ef0c80a
GNUmakefile.in
@@ -1,7 +1,7 @@
1
#
2
# PostgreSQL top level makefile
3
4
-# $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 $
5
6
7
srcdir = @srcdir@
@@ -12,18 +12,18 @@ top_builddir = .
12
13
14
all:
15
- make -C src all
+ $(MAKE) -C src all
16
@echo "All of PostgreSQL successfully made. Ready to install."
17
18
install:
19
- make -C src install
+ $(MAKE) -C src install
20
@cat $(srcdir)/register.txt
21
22
clean:
23
- make -C src clean
+ $(MAKE) -C src clean
24
25
distclean:
26
- make -C src distclean
+ $(MAKE) -C src distclean
27
-rm -f config.cache config.log config.status GNUmakefile
28
29
0 commit comments