diff options
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r-- | GNUmakefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 62bbf57ba2..9065bc9864 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,7 +1,7 @@ # # PostgreSQL top level makefile # -# $PostgreSQL: pgsql/GNUmakefile.in,v 1.42 2005/05/01 06:15:51 neilc Exp $ +# $PostgreSQL: pgsql/GNUmakefile.in,v 1.43 2006/04/03 18:47:41 petere Exp $ # subdir = @@ -20,11 +20,17 @@ install: $(MAKE) -C config $@ @echo "PostgreSQL installation complete." -installdirs uninstall distprep: +installdirs uninstall: $(MAKE) -C doc $@ $(MAKE) -C src $@ $(MAKE) -C config $@ +distprep: + $(MAKE) -C doc $@ + $(MAKE) -C src $@ + $(MAKE) -C config $@ + $(MAKE) -C contrib $@ + # clean, distclean, etc should apply to contrib too, even though # it's not built by default clean: |