summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-13 07:26:49 +0000
committerDana Jansens <danakj@orodu.net>2003-04-13 07:26:49 +0000
commit159423ff17606a1e1ababec295da1e25d0c57793 (patch)
treef3fd9885dbbf0eb615abe85bc8c1698b451dd2dc
parent5cf61ee02354c1c9f80c11f3796afc4b948055d6 (diff)
break on errors
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 24e7fcd9..75ebca4b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -4,22 +4,22 @@ targets = render cwmcc obcl kernel plugins themes data
all: libtool
@for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
uninstall:
@for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
install: all
@for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
clean:
@for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
$(RM) *\~