aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpmd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xenpmd/Makefile')
-rw-r--r--tools/xenpmd/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/xenpmd/Makefile b/tools/xenpmd/Makefile
index 2a9249cb96..0743c8c04d 100644
--- a/tools/xenpmd/Makefile
+++ b/tools/xenpmd/Makefile
@@ -1,8 +1,9 @@
XEN_ROOT=$(CURDIR)/../..
include $(XEN_ROOT)/tools/Rules.mk
-CFLAGS += -Werror
-CFLAGS += $(CFLAGS_libxenstore)
+CFLAGS += -Werror
+CFLAGS += $(CFLAGS_libxenstore)
+
LDLIBS += $(LDLIBS_libxenstore)
BIN = xenpmd
@@ -19,7 +20,7 @@ install: all
clean:
$(RM) -f $(BIN) $(DEPS)
-%: %.c Makefile
- $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LDLIBS)
+%: %.o Makefile
+ $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS)
-include $(DEPS)