blob: 61c0691ca89ee8ce2887b107442816059603f10c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
TOP = .
include $(TOP)/mk/boilerplate.mk
SUBDIRS = timeout
CLEAN_FILES += mk/wordsize.mk
all :: boot
@echo "To run the tests, go into tests/ghc-regress and say \`make'."
@echo "More information about configuring and running the testsuite"
@echo "can be found in the file \`README' in this directory."
boot ::
$(CPP) $(RAWCPP_FLAGS) -x c mk/wordsize.mk.in > mk/wordsize.mk
include $(TOP)/mk/target.mk
|