diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Makefile b/test/Makefile index 247450c..1d43f8b 100644 --- a/test/Makefile +++ b/test/Makefile @@ -33,10 +33,10 @@ clean : @echo "Running optimizier test on $<" @./TestOptimizer.sh $< -%.bc: %.ll $(AS) - rm -f $@ - $(AS) $< +%.bc: %.ll + $(AS) $< -f -%.mc: %.bc $(LLC) +%.mc: %.ll @echo "Generating machine instructions for $<" - $(LLC) $(LLCOPTS) $< > $@ + $(AS) < $< | $(LLC) -dsched=t > $@ + |