forked from OSchip/llvm-project
parent
f594fe3503
commit
7b2b3520c7
|
@ -37,3 +37,9 @@ Output/%.s: Output/%.bc $(LLC)
|
|||
@echo "======== Generating assembly code for $<"
|
||||
$(LLC) -f $(LLCFLAGS) $< -o $@ || \
|
||||
( rm -f $@; $(FAILURE) $@ )
|
||||
|
||||
Output/%: Output/%.s $(LLC)
|
||||
@echo "======== Generating SPARC executable for $<"
|
||||
$(CC) $(CFLAGS) $< -o $@ || \
|
||||
( rm -f $@; $(FAILURE) $@ )
|
||||
|
||||
|
|
Loading…
Reference in New Issue