summaryrefslogtreecommitdiff
path: root/src/interfaces/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2008-03-18 16:24:50 +0000
committerPeter Eisentraut <peter_e@gmx.net>2008-03-18 16:24:50 +0000
commit8c87cc370f427515b4aa9b03e64a8878de4b6a22 (patch)
tree1e9278f101716ad5b081752ebab8d09cb24db3b1 /src/interfaces/Makefile
parent184c42d20d980cd441139a164259f67a9c088264 (diff)
downloadpostgresql-8c87cc370f427515b4aa9b03e64a8878de4b6a22.tar.gz
Catch all errors in for and while loops in makefiles. Don't ignore any
errors in any commands, including in various clean targets that have so far been handled inconsistently. make -i is available to ignore all errors in a consistent and official way.
Diffstat (limited to 'src/interfaces/Makefile')
-rw-r--r--src/interfaces/Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile
index db0e4ff671..dd57c18c3e 100644
--- a/src/interfaces/Makefile
+++ b/src/interfaces/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.55 2007/02/09 15:55:59 petere Exp $
+# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.56 2008/03/18 16:24:50 petere Exp $
#
#-------------------------------------------------------------------------
@@ -14,13 +14,5 @@ include $(top_builddir)/src/Makefile.global
DIRS = libpq ecpg
-ALLDIRS = $(DIRS)
-
-all install installdirs uninstall distprep:
+all install installdirs uninstall distprep clean distclean maintainer-clean:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
-
-clean:
- @for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
-
-distclean maintainer-clean:
- @for dir in $(ALLDIRS); do $(MAKE) -C $$dir $@; done