1# This Makefile runs the tests using GHC's testsuite framework.  It
2# assumes the package is part of a GHC build tree with the testsuite
3# installed in ../../../testsuite.
4
5TOP=../../../../../testsuite
6include $(TOP)/mk/boilerplate.mk
7include $(TOP)/mk/test.mk
8
9build-tix:
10	rm -Rf .hpc hpc001.o a.out
11	'$(TEST_HC)' -fhpc hpc001.hs
12	./a.out
13	mv a.out.tix hpc_sample.tix
14
15