blob: 59267273ce11937cab6b8d45f4d9314fc6f7be4e [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 Lattnerb7bfd422003-01-16 22:33:18 +00008TESTNAME = $*
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 $<