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 f594fe3503
commit 7b2b3520c7
1 changed files with 6 additions and 0 deletions

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