blob: ba605110c593552241d74fbfdf498a19d92ecb63 [file] [log] [blame]
Chris Lattner243491a2003-01-16 20:39:24 +00001##===- test/Programs/Makefile.TEST.example -----------------*- Makefile -*-===##
2#
3# Example to show a custom test. This test just prints the size of the bytecode
4# file for each program.
5#
6##===----------------------------------------------------------------------===##
7
Chris Lattnera7909862003-01-16 21:08:41 +00008TESTNAME = $(subst test.$(TEST).,,$@)
Chris Lattnerc76da702003-01-16 20:59:38 +00009
Chris Lattnera7909862003-01-16 21:08:41 +000010test.$(TEST).%: Output/%.llvm.bc
Chris Lattner243491a2003-01-16 20:39:24 +000011 @echo "========================================="
Chris Lattnera7909862003-01-16 21:08:41 +000012 @echo "Running '$(TEST)' test on '$(TESTNAME)' program"
Chris Lattner243491a2003-01-16 20:39:24 +000013 wc $<