Build with $(CC), not gcc explicitly

llvm-svn: 3869
This commit is contained in:
Chris Lattner 2002-09-20 22:32:00 +00:00
parent d48ac6ea41
commit 6e1f8c5963
1 changed files with 1 additions and 1 deletions

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)