aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenmon/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xenmon/Makefile')
-rw-r--r--tools/xenmon/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/xenmon/Makefile b/tools/xenmon/Makefile
index c130a3f89a..b3b54243a1 100644
--- a/tools/xenmon/Makefile
+++ b/tools/xenmon/Makefile
@@ -40,9 +40,10 @@ clean:
rm -f $(BIN) $(DEPS)
-%: %.c Makefile
- $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LDLIBS)
-xentrace_%: %.c Makefile
- $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LDLIBS)
+%: %.o Makefile
+ $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS)
+
+xentrace_%: %.o Makefile
+ $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS)
-include $(DEPS)