@@ -155,13 +155,11 @@ install-docs:
# We only have build-tests install-tests, not uninstall-tests etc.
.PHONY: build-tests
build-tests: build-xen
- export BASEDIR=$(XEN_ROOT)/xen; \
- $(MAKE) -f $$BASEDIR/Rules.mk -C xen/test build
+ $(MAKE) -C xen tests
.PHONY: install-tests
install-tests: install-xen
- export BASEDIR=$(XEN_ROOT)/xen; \
- $(MAKE) -f $$BASEDIR/Rules.mk -C xen/test install
+ $(MAKE) -C xen $@
# build xen and the tools and place them in the install
# directory. 'make install' should then copy them to the normal system
@@ -90,6 +90,9 @@ _install: $(TARGET)$(CONFIG_XEN_INSTALL_SUFFIX)
.PHONY: _tests
_tests:
$(MAKE) -f $(BASEDIR)/Rules.mk -C test tests
+.PHONY: install-tests
+install-tests:
+ $(MAKE) -f $(BASEDIR)/Rules.mk -C test install
.PHONY: _uninstall
_uninstall: D=$(DESTDIR)