1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Jello/Makefile
Chris Lattner 912f11f35d Jello is now part of LLI
llvm-svn: 5122
2002-12-23 23:51:19 +00:00

24 lines
622 B
Makefile

# test/Regression/Jello/Makefile
#
# This directory contains regression tests for the LLVM x86 JIT
#
LEVEL = ../../..
include $(LEVEL)/test/Makefile.tests
TESTS := $(wildcard *.ll)
FTESTS := $(wildcard *.llx) # Freeform tests
all:: $(addprefix Output/, $(TESTS:%.ll=%.out))
Output/%.out: Output/%.bc $(LLI)
@echo "======== Running $< ==================="
$(VERB) $(LLI) -force-interpreter=false -stats $< > $@ 2>&1 || \
( cat $@; rm -f $@; $(FAILURE) $@ )
all:: $(addprefix Output/, $(FTESTS:%.llx=%.llx.out))
Output/%.llx.out: %.llx Output/.dir $(LJELLO)
-$(TESTRUNR) $<