Generate assembly code for testcodegen.

llvm-svn: 866
This commit is contained in:
Vikram S. Adve 2001-10-18 00:22:14 +00:00
parent 757a67d389
commit aad04c97e8
1 changed files with 2 additions and 2 deletions

View File

@ -43,9 +43,9 @@ clean :
%.bc: %.ll
$(AS) $< -f
%.mc: %.ll $(LLC) $(AS)
%.mc: %.bc $(LLC) $(AS)
@echo "Generating machine instructions for $<"
$(AS) < $< | $(LLC) $(LLCOPTS) > $@
$(LLC) $(LLCOPTS) $< > $@
%.s: %.ll $(LLC) $(AS)
$(AS) < $< | $(LLC) > $@