summaryrefslogtreecommitdiff
path: root/src/interfaces/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-07-19 16:30:27 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-07-19 16:30:27 +0000
commit32163099d7c43a0244f463eb4e525c711e6e97a3 (patch)
treee7a940778fa8adb459b0c35912a0990a214d0759 /src/interfaces/Makefile
parent79e6648649ad4bf6ef7112e9d97e35270397fb01 (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/interfaces/Makefile')
-rw-r--r--src/interfaces/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile
index d9fbf0abec1..146fbf93e89 100644
--- a/src/interfaces/Makefile
+++ b/src/interfaces/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.40 2000/06/28 18:29:35 petere Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.41 2000/07/19 16:30:06 petere Exp $
#
#-------------------------------------------------------------------------
@@ -37,8 +37,8 @@ DIRS += python
endif
-all install installdirs uninstall dep depend:
- @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit 1; done
+all install installdirs uninstall dep depend distprep:
+ @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
clean:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done