1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Add commands to assemble and compile a .ll file

llvm-svn: 661
This commit is contained in:
Chris Lattner 2001-09-28 14:13:09 +00:00
parent 74c4c61d71
commit b18a515a72

View File

@ -39,3 +39,9 @@ clean :
@echo "Generating machine instructions for $<"
$(AS) < $< | $(LLC) $(LLCOPTS) > $@
%.s: %.ll $(LLC) $(AS)
$(AS) < $< | $(LLC) > $@
%.o: %.s %.ll
as -xarch=v9 $<