blob: c18a877beed33115c9cbeca202b60ef9435aa79b (
plain)
1
2
3
4
5
6
7
8
9
|
LEVEL = ../../..
include $(LEVEL)/test/Makefile.tests
TESTS := $(wildcard *.ll)
all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
Output/%.ll.out: %.ll Output/.dir $(LLINK)
-$(TESTRUNR) $<
|