aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpmd
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xenpmd')
-rw-r--r--tools/xenpmd/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/xenpmd/Makefile b/tools/xenpmd/Makefile
index 0743c8c04d..13f940fc77 100644
--- a/tools/xenpmd/Makefile
+++ b/tools/xenpmd/Makefile
@@ -6,21 +6,19 @@ CFLAGS += $(CFLAGS_libxenstore)
LDLIBS += $(LDLIBS_libxenstore)
-BIN = xenpmd
-
.PHONY: all
-all: $(BIN)
+all: xenpmd
.PHONY: install
install: all
$(INSTALL_DIR) $(DESTDIR)$(SBINDIR)
- $(INSTALL_PROG) $(BIN) $(DESTDIR)$(SBINDIR)
+ $(INSTALL_PROG) xenpmd $(DESTDIR)$(SBINDIR)
.PHONY: clean
clean:
- $(RM) -f $(BIN) $(DEPS)
+ $(RM) -f xenpmd $(DEPS)
-%: %.o Makefile
+xenpmd: xenpmd.o Makefile
$(CC) $(LDFLAGS) $< -o $@ $(LDLIBS)
-include $(DEPS)