blob: f49015d9a5b1c7b153de000aa285bf6ac720e708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
TOP = .
include $(TOP)/mk/boilerplate.mk
CLEAN_FILES += mk/wordsize.mk
all ::
@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
|