From: Chris Lattner Date: Thu, 23 Jan 2003 16:51:47 +0000 (+0000) Subject: Dont' stop the build X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0798b7f45a2989f2adb4b8af858172a424602262;p=oota-llvm.git Dont' stop the build git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5412 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CBackend/Makefile b/test/CBackend/Makefile index d3ce4435e80..06e1bdeb6bf 100644 --- a/test/CBackend/Makefile +++ b/test/CBackend/Makefile @@ -15,9 +15,9 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.to)) Output/%.to: Output/%.c - $(CC) -c $< -o $@ #|| \ + $(CC) -c $< -o $@ || \ (rm -f $@; $(FAILURE) $@ ) Output/%.c: %.ll Output/.dir $(LAS) $(LDIS) - $(LAS) < $< | $(LDIS) -c > $@ #|| \ + $(LAS) < $< | $(LDIS) -c > $@ || \ (rm -f $@; $(FAILURE) $@ )