aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpmd
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-04-09 17:22:44 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-04-09 17:22:44 +0100
commit6c9ee00b10928d69065cef936c287e6a8b547d41 (patch)
tree210eb9663d04db93d806633d7ba3a1a5b86a4aff /tools/xenpmd
parentda31cad930f79026afc839824800d578e73570ac (diff)
downloadxen-6c9ee00b10928d69065cef936c287e6a8b547d41.tar.gz
xen-6c9ee00b10928d69065cef936c287e6a8b547d41.tar.bz2
xen-6c9ee00b10928d69065cef936c287e6a8b547d41.zip
xenpmd: Explicit build rule.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/xenpmd')
-rw-r--r--tools/xenpmd/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/xenpmd/Makefile b/tools/xenpmd/Makefile
index 7e9353bfb0..10cb2fb211 100644
--- a/tools/xenpmd/Makefile
+++ b/tools/xenpmd/Makefile
@@ -19,4 +19,7 @@ install: all
clean:
$(RM) -f $(BIN) $(DEPS)
+%: %.c Makefile
+ $(CC) $(CFLAGS) $< $(LDFLAGS) -o $@
+
-include $(DEPS)