1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Added command to build SPARC executable.

llvm-svn: 1730
This commit is contained in:
Vikram S. Adve 2002-02-11 22:50:17 +00:00
parent 6775a132a2
commit 39dc45d020

View File

@ -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) $@ )