1 2tests all: build 3 4 5ifneq ($(XEN_TARGET_ARCH),x86_32) 6# Xen 32-bit x86 hypervisor no longer supported, so has no test livepatches 7SUBDIRS += livepatch 8endif 9 10install build subtree-force-update uninstall: %: 11 set -e; for s in $(SUBDIRS); do \ 12 $(MAKE) -f $(BASEDIR)/Rules.mk -C $$s $*; \ 13 done 14 15clean:: 16 set -e; for s in $(SUBDIRS); do \ 17 $(MAKE) -f $(BASEDIR)/Rules.mk -C $$s $@; \ 18 done 19