1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Reverse previous change.

llvm-svn: 867
This commit is contained in:
Vikram S. Adve 2001-10-18 00:23:32 +00:00
parent 83de705ef7
commit 91375f630e

View File

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