File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
#
2
2
# PostgreSQL top level makefile
3
3
#
4
- # $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.14 2000/10/02 22:21:21 petere Exp $
4
+ # $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.15 2000/12/04 00:34:40 tgl Exp $
5
5
#
6
6
7
7
subdir =
@@ -18,14 +18,22 @@ install:
18
18
$(MAKE) -C src install
19
19
@cat $(srcdir)/register.txt
20
20
21
- installdirs uninstall clean distprep:
21
+ installdirs uninstall distprep:
22
22
$(MAKE) -C doc $@
23
23
$(MAKE) -C src $@
24
24
25
- # Important: distclean `doc' before `src', otherwise Makefile.global
25
+ # 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
26
33
# will be gone too soon.
27
34
distclean maintainer-clean:
28
35
-$(MAKE) -C doc $@
36
+ -$(MAKE) -C contrib $@
29
37
-$(MAKE) -C src $@
30
38
-rm -f config.cache config.log config.status GNUmakefile
31
39
You can’t perform that action at this time.
0 commit comments