Reorder paramters to make the command line more easily modifiable

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-11-06 08:34:56 +00:00
parent e34443db3c
commit 54bc6b3166
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ clean :
$(LLC) -f -trace $(LLCFLAGS) $<
%.o: %.c
$(LCC) $(LCFLAGS) -c -o $@ $<
$(LCC) $(LCFLAGS) $< -c -o $@
%.bc: %.ll
$(LAS) -f $<

View File

@ -67,7 +67,7 @@ clean :
$(LLC) -f -trace $(LLCFLAGS) $<
%.o: %.c
$(LCC) $(LCFLAGS) -c -o $@ $<
$(LCC) $(LCFLAGS) $< -c -o $@
%.bc: %.ll
$(LAS) -f $<