diff options
| author | Peter Eisentraut | 2000-07-19 16:30:27 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2000-07-19 16:30:27 +0000 |
| commit | 32163099d7c43a0244f463eb4e525c711e6e97a3 (patch) | |
| tree | e7a940778fa8adb459b0c35912a0990a214d0759 /src/bin/Makefile | |
| parent | 79e6648649ad4bf6ef7112e9d97e35270397fb01 (diff) | |
Add distprep target to take some of the job of the release_prep script.
The latter updated accordingly. Also add `dist' and `distcheck' targets
to play with, but caveat packager.
Updated backend/bootstrap and backend/parser makefile to make them
marginally builddir aware and fix the usual set of things.
Add rule to automatically remake config.h dependent on config.h.in and
config.status. (Adopted from Autoconf manual and about every other
package.) On a good day we should now have a complete and accurate set
of dependencies throughout everything.
Diffstat (limited to 'src/bin/Makefile')
| -rw-r--r-- | src/bin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/Makefile b/src/bin/Makefile index d3e1556b5d..0029f6f99e 100644 --- a/src/bin/Makefile +++ b/src/bin/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.28 2000/07/02 15:20:56 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.29 2000/07/19 16:29:53 petere Exp $ # #------------------------------------------------------------------------- @@ -27,8 +27,8 @@ endif DIRS += pgtclsh endif -all install installdirs uninstall depend: - @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit 1; done +all install installdirs uninstall depend distprep: + @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done clean distclean maintainer-clean: -@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done |
