mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
13 lines
258 B
Makefile
13 lines
258 B
Makefile
|
|
||
|
LEVEL = ../../../..
|
||
|
include $(LEVEL)/test/Makefile.tests
|
||
|
|
||
|
TESTS := $(wildcard *.ll)
|
||
|
|
||
|
all:: $(addprefix Output/, $(TESTS:%.ll=%.ibc))
|
||
|
|
||
|
Output/%.ibc: %.ll Output/.dir $(LOPT)
|
||
|
($(LAS) < $< | $(LOPT) -inline -q -f -o $@) || \
|
||
|
( rm -f $@; $(FAILURE) $@ )
|
||
|
|