aboutsummaryrefslogtreecommitdiffstats
path: root/test/Feature
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-02-11 22:50:17 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-02-11 22:50:17 +0000
commit90c511cd18cedbde8dc3b96d694c8ad7b728ae14 (patch)
tree314328b2fa9f9c5acb1fa8e9edd49ee9b2ed6100 /test/Feature
parent289e74a4ba4d6722e81ce19dfee0081abda8d088 (diff)
downloadexternal_llvm-90c511cd18cedbde8dc3b96d694c8ad7b728ae14.zip
external_llvm-90c511cd18cedbde8dc3b96d694c8ad7b728ae14.tar.gz
external_llvm-90c511cd18cedbde8dc3b96d694c8ad7b728ae14.tar.bz2
Added command to build SPARC executable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1730 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r--test/Feature/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Feature/Makefile b/test/Feature/Makefile
index f99d6ae..349c1e0 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) $@ )
+