aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xentrace/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-01-17 15:17:22 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-01-17 15:17:22 +0000
commitd2477385df5d7896d5df12fef4fd5fedef8b94e1 (patch)
treeee35932254b50fa56f12a323bdd2f7767760c5d3 /tools/xentrace/Makefile
parentdb13a968f5438711901cd404fae02c6e15dabc3c (diff)
downloadxen-d2477385df5d7896d5df12fef4fd5fedef8b94e1.tar.gz
xen-d2477385df5d7896d5df12fef4fd5fedef8b94e1.tar.bz2
xen-d2477385df5d7896d5df12fef4fd5fedef8b94e1.zip
tools: LDFLAGS in link lines
LDFLAGS is not honoured by a couple of link lines in tools/*, but should be. Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/xentrace/Makefile')
-rw-r--r--tools/xentrace/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xentrace/Makefile b/tools/xentrace/Makefile
index ce8e4904a8..d4917e561e 100644
--- a/tools/xentrace/Makefile
+++ b/tools/xentrace/Makefile
@@ -52,6 +52,6 @@ clean:
$(RM) *.a *.so *.o *.rpm $(BIN) $(LIBBIN)
%: %.c $(HDRS) Makefile
- $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) -lxenctrl
+ $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) $(LDFLAGS) -lxenctrl
xentrace_%: %.c $(HDRS) Makefile
- $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) -lxenctrl
+ $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) $(LDFLAGS) -lxenctrl