aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tests/Makefile')
-rw-r--r--tools/tests/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/tests/Makefile b/tools/tests/Makefile
index 99b6b20408..afa6578619 100644
--- a/tools/tests/Makefile
+++ b/tools/tests/Makefile
@@ -6,14 +6,17 @@ TARGET := test_x86_emulator
HOSTCFLAGS += -D__TEST_HARNESS__
+.PHONY: all
all: $(TARGET)
$(TARGET): x86_emulate.o test_x86_emulator.o
$(HOSTCC) -o $@ $^
+.PHONY: clean
clean:
rm -rf $(TARGET) *.o *~ core
+.PHONY: install
install:
x86_emulate.o: $(XEN_ROOT)/xen/arch/x86/x86_emulate.c