Reorder paramters to make the command line more easily modifiable

llvm-svn: 1153
This commit is contained in:
Chris Lattner 2001-11-06 08:34:56 +00:00
parent fcf608c1a7
commit 7df494872d
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 $<