aboutsummaryrefslogtreecommitdiffstats
path: root/tools/check/Makefile
blob: 4605c03c392ffa3e64aac3d15d419c326109f3ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: all
all: build

# Check this machine is OK for building on.
.PHONY: build
build:
	./chk build

# Check this machine is OK for installing on.
# DO NOT use this check from 'make install' in the parent
# directory, as that target can be used to make an installable
# copy rather than actually installing.
.PHONY: install
install:
	./chk install

.PHONY: clean
clean:
	./chk clean