aboutsummaryrefslogtreecommitdiffstats
path: root/tools/check/Makefile
blob: adfbdaea3ad343eec3f6e0027542f8111435e9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
XEN_ROOT = ../..
include $(XEN_ROOT)/tools/Rules.mk

.PHONY: all install
all install: check-build

# Check this machine is OK for building on.
.PHONY: check-build
check-build:
	PYTHON=$(PYTHON) LIBXENAPI_BINDINGS=$(LIBXENAPI_BINDINGS) ACM_SECURITY=$(ACM_SECURITY) ./chk build

# Check this machine is OK for installing on.
.PHONY: check-install
check-install:
	PYTHON=$(PYTHON) LIBXENAPI_BINDINGS=$(LIBXENAPI_BINDINGS) ACM_SECURITY=$(ACM_SECURITY) ./chk install

.PHONY: clean
clean:
	./chk clean