diff options
-rw-r--r-- | test/Feature/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Feature/Makefile b/test/Feature/Makefile index f99d6ae655..349c1e0c21 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) $@ ) + |