aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpmd
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-10-23 11:20:44 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-10-23 11:20:44 +0100
commit869da4e975c494e77d9256461873abf5fc935983 (patch)
tree10bbd44842c0dcdcc4aaad9b18fbd18640f8e8e3 /tools/xenpmd
parent7e02a88ed318940a7fa87165d3fa082c4d523b92 (diff)
downloadxen-869da4e975c494e77d9256461873abf5fc935983.tar.gz
xen-869da4e975c494e77d9256461873abf5fc935983.tar.bz2
xen-869da4e975c494e77d9256461873abf5fc935983.zip
xenpmd: Fix makefile for 'make install'.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/xenpmd')
-rw-r--r--tools/xenpmd/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/xenpmd/Makefile b/tools/xenpmd/Makefile
index 0e9f54040c..6fc31a46b4 100644
--- a/tools/xenpmd/Makefile
+++ b/tools/xenpmd/Makefile
@@ -10,6 +10,11 @@ BIN = xenpmd
.PHONY: all
all: $(BIN)
+.PHONY: install
+install: all
+ $(INSTALL_DIR) $(DESTDIR)$(SBINDIR)
+ $(INSTALL_PROG) $(BIN) $(DESTDIR)$(SBINDIR)
+
.PHONY: clean
clean:
$(RM) -f $(BIN)