1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00

Dont' stop the build

llvm-svn: 5412
This commit is contained in:
Chris Lattner 2003-01-23 16:51:47 +00:00
parent 02d03fd8a8
commit 6a79e596ce

View File

@ -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) $@ )