aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)