diff options
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 176349ca..256737a2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -625,6 +625,10 @@ test/run-pass/%.x86$(CFG_EXE_SUFFIX): test/run-pass/%.rc $(REQ) @$(call CFG_ECHO, compile [x86]: $<) $(BOOT) -o $@ $< +test/bench/shootout/%.x86$(CFG_EXE_SUFFIX): test/bench/shootout/%.rs $(REQ) + @$(call CFG_ECHO, compile [x86]: $<) + $(BOOT) -o $@ $< + %.s: %.bc @$(call CFG_ECHO, compile [llvm]: $<) $(CFG_QUIET)llc $(CFG_LLC_CFLAGS) -o $@ $< |