1XEN_ROOT = $(CURDIR)/../.. 2include $(XEN_ROOT)/tools/Rules.mk 3 4SUBDIRS := libs 5SUBDIRS += xenstored 6 7ifeq ($(CONFIG_TESTS),y) 8SUBDIRS += test 9endif 10 11.NOTPARALLEL: 12# targets here must be run in order, otherwise we can try 13# to build programs before the libraries are done 14 15.PHONY: all 16all: subdirs-all 17 18.PHONY: install 19install: subdirs-install 20 21.PHONY: uninstall 22uninstall: subdirs-uninstall 23 24.PHONY: clean 25clean: subdirs-clean 26 27.PHONY: distclean 28distclean: subdirs-distclean 29