llvm-6502/test/Transforms/Inline/Makefile
Chris Lattner f49764070d Basic test of the inlinr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2767 91177308-0d34-0410-b5e6-96231b3b80d8
2002-06-24 17:46:05 +00:00

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) $@ )