From 90c511cd18cedbde8dc3b96d694c8ad7b728ae14 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Mon, 11 Feb 2002 22:50:17 +0000 Subject: [PATCH] Added command to build SPARC executable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1730 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Feature/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) 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) $@ ) + -- 2.34.1