break on errors

This commit is contained in:
Dana Jansens 2003-04-13 07:26:49 +00:00
parent 5cf61ee023
commit 159423ff17

View file

@ -4,22 +4,22 @@ targets = render cwmcc obcl kernel plugins themes data
all: libtool all: libtool
@for i in $(targets); do \ @for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done done
uninstall: uninstall:
@for i in $(targets); do \ @for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done done
install: all install: all
@for i in $(targets); do \ @for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done done
clean: clean:
@for i in $(targets); do \ @for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done done
$(RM) *\~ $(RM) *\~