blob: e6067bb43a35e1f55b376a0e7df1e1c28981b32c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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) $@ )
|