blob: 71988d4d236b12ad080ce1222a2e3c5cf9ae2bf5 [file] [log] [blame]
Chris Lattnerf3e27342003-01-17 22:58:49 +00001##===- test/Programs/TEST.example.Makefile -----------------*- Makefile -*-===##
Chris Lattner243491a2003-01-16 20:39:24 +00002#
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 Lattner59c027e2003-01-17 19:42:37 +000010$(PROGRAMS_TO_TEST:%=test.$(TEST).%): \
Chris Lattnera7909862003-01-16 21:08:41 +000011test.$(TEST).%: Output/%.llvm.bc
Chris Lattner243491a2003-01-16 20:39:24 +000012 @echo "========================================="
Chris Lattnera7909862003-01-16 21:08:41 +000013 @echo "Running '$(TEST)' test on '$(TESTNAME)' program"
Chris Lattner243491a2003-01-16 20:39:24 +000014 wc $<