mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 14:20:33 +00:00
16 lines
413 B
Makefile
16 lines
413 B
Makefile
|
# test/Regression/LLC/Makefile
|
||
|
#
|
||
|
# This directory contains regression tests for the LLVM sparc backend.
|
||
|
#
|
||
|
LEVEL = ../../..
|
||
|
include $(LEVEL)/test/Makefile.tests
|
||
|
|
||
|
TESTS := $(wildcard *.ll)
|
||
|
|
||
|
all:: $(addprefix Output/, $(TESTS:%.ll=%.ts))
|
||
|
|
||
|
Output/%.ts: Output/%.bc $(LLC) Output/.dir
|
||
|
@echo "======== Compiling $< =========="
|
||
|
$(LLC) -f $< -o $@ || \
|
||
|
( rm -f $@; $(FAILURE) $@ )
|