From: Vikram S. Adve Date: Mon, 11 Feb 2002 22:50:17 +0000 (+0000) Subject: Added command to build SPARC executable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=90c511cd18cedbde8dc3b96d694c8ad7b728ae14;p=oota-llvm.git Added command to build SPARC executable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1730 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Feature/Makefile b/test/Feature/Makefile index f99d6ae6550..349c1e0c211 100644 --- a/test/Feature/Makefile +++ b/test/Feature/Makefile @@ -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) $@ ) +