mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +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) $@ )
|