1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/Inline/Makefile
Chris Lattner 40321e039f Basic test of the inlinr
llvm-svn: 2767
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) $@ )