aboutsummaryrefslogtreecommitdiffstats
path: root/tools/remus/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-11-13 15:34:03 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-11-13 15:34:03 +0000
commit25f52c4c7401708e7f1b71b705b65dc84bc693a7 (patch)
tree3e8924074ffd8d6bc791e747cd53fe52d989e557 /tools/remus/Makefile
parent1a38c03675701dc3f35dc9cb6efdb5cdd802f906 (diff)
downloadxen-25f52c4c7401708e7f1b71b705b65dc84bc693a7.tar.gz
xen-25f52c4c7401708e7f1b71b705b65dc84bc693a7.tar.bz2
xen-25f52c4c7401708e7f1b71b705b65dc84bc693a7.zip
Remus: add control script to activate remus on a VM
Signed-off-by: Brendan Cully <brendan@cs.ubc.ca>
Diffstat (limited to 'tools/remus/Makefile')
-rw-r--r--tools/remus/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/remus/Makefile b/tools/remus/Makefile
new file mode 100644
index 0000000000..17518a95f7
--- /dev/null
+++ b/tools/remus/Makefile
@@ -0,0 +1,20 @@
+XEN_ROOT=../..
+include $(XEN_ROOT)/tools/Rules.mk
+
+SCRIPTS = remus
+
+.PHONY: all
+all: build
+
+.PHONY: build
+build:
+ echo "Nothing to do"
+
+.PHONY: install
+install:
+ $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
+ $(INSTALL_PYTHON_PROG) $(SCRIPTS) $(DESTDIR)$(BINDIR)
+
+.PHONY: clean
+clean:
+ echo "Nothing to do"