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:
parent
74c4c61d71
commit
b18a515a72
@ -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 $<
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user