We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3d0e496 commit2bf2ee7Copy full SHA for 2bf2ee7
GNUmakefile.in
@@ -1,7 +1,7 @@
1
#
2
# PostgreSQL top level makefile
3
4
-# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.14 2000/10/02 22:21:21 petere Exp $
+# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.15 2000/12/04 00:34:40 tgl Exp $
5
6
7
subdir =
@@ -18,14 +18,22 @@ install:
18
$(MAKE) -C src install
19
@cat $(srcdir)/register.txt
20
21
-installdirs uninstallcleandistprep:
+installdirs uninstall distprep:
22
$(MAKE) -C doc $@
23
$(MAKE) -C src $@
24
25
-# Important: distclean `doc' before `src', otherwise Makefile.global
+# clean, distclean, etc should apply to contrib too, even though
26
+# it's not built by default
27
+clean:
28
+$(MAKE) -C doc $@
29
+$(MAKE) -C contrib $@
30
+$(MAKE) -C src $@
31
+
32
+# Important: distclean `src' last, otherwise Makefile.global
33
# will be gone too soon.
34
distclean maintainer-clean:
35
-$(MAKE) -C doc $@
36
+-$(MAKE) -C contrib $@
37
-$(MAKE) -C src $@
38
-rm -f config.cache config.log config.status GNUmakefile
39