aboutsummaryrefslogtreecommitdiff
path: root/test/LLC/Makefile
blob: 4fb94efba31c5bcf8ccd1005a3f5a33d50aa3505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#                    test/Regression/LLC/Makefile
#
# This directory contains regression tests for the LLVM sparc backend.  
#
LEVEL = ../../..
include $(LEVEL)/test/Makefile.tests

# Only .ll tests here.  C tests are run via Makefile.singlesrc above.
# 
TESTS := $(wildcard *.ll)

all:: $(addprefix Output/, $(filter-out %.c, $(TESTS:%.ll=%.ts)))

Output/%.ts: Output/%.bc $(LLC) Output/.dir
	@echo "======== Compiling $< =========="
	$(LLC) -f $< -o $@ || \
                 ( rm -f $@; $(FAILURE) $@ )