Build with $(CC), not gcc explicitly

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3869 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-09-20 22:32:00 +00:00
parent 90d7119211
commit 61e4391b57

View File

@ -15,7 +15,7 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.to))
Output/%.to: Output/%.c
gcc -c -W -Wall $< -o $@ || \
$(CC) -c -W -Wall $< -o $@ || \
(rm -f $@; $(FAILURE) $@ )
Output/%.c: %.ll Output/.dir $(LAS) $(LDIS)