aboutsummaryrefslogtreecommitdiffstats
path: root/tools/check/Makefile
blob: c07008d0950ca6b66634db1cb714348f36369ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
XEN_ROOT = $(CURDIR)/../..
include $(XEN_ROOT)/tools/Rules.mk

# Export the necessary environment variables for the tests
export PYTHON
export LIBXENAPI_BINDINGS
export CHECK_INCLUDES
export CHECK_LIB
export CONFIG_SYSTEM_LIBAIO

.PHONY: all install
all install: check-build

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

# Check this machine is OK for installing on.
.PHONY: check-install
check-install:
	./chk install

.PHONY: clean
clean:
	./chk clean