aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests/mce-test
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-03-31 19:34:56 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-03-31 19:34:56 +0100
commit9ac650d825b140cbd1c2eac378ccdd7b3c52c86e (patch)
tree65dff2e3ba741c62e96e3240585e9e65c717373c /tools/tests/mce-test
parent61d0fe74c6d60cd184afdf4f4566f421c90816ce (diff)
downloadxen-9ac650d825b140cbd1c2eac378ccdd7b3c52c86e.tar.gz
xen-9ac650d825b140cbd1c2eac378ccdd7b3c52c86e.tar.bz2
xen-9ac650d825b140cbd1c2eac378ccdd7b3c52c86e.zip
tools: remove pattern matched linking rules
Most subdirs only build a single tool to start with and those which build multiple tools often have different linkage requirements. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/tests/mce-test')
-rw-r--r--tools/tests/mce-test/tools/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/tests/mce-test/tools/Makefile b/tools/tests/mce-test/tools/Makefile
index 6df8385dc4..8a23b83f5a 100644
--- a/tools/tests/mce-test/tools/Makefile
+++ b/tools/tests/mce-test/tools/Makefile
@@ -2,21 +2,20 @@ XEN_ROOT=$(CURDIR)/../../../..
include $(XEN_ROOT)/tools/Rules.mk
CFLAGS += -Werror
-
CFLAGS += $(CFLAGS_libxenctrl)
+CFLAGS += $(CFLAGS_libxenguest)
+CFLAGS += $(CFLAGS_libxenstore)
CFLAGS += $(CFLAGS_xeninclude)
-HDRS = $(wildcard *.h)
-
.PHONY: all
all: xen-mceinj
install:
- cp xen-mceinj /usr/sbin/
+ $(INSTALL_PROG) xen-mceinj $(DESTDIR)$(SBINDIR)
.PHONY: clean
clean:
$(RM) *.o xen-mceinj
-xen-mceinj: %: %.o Makefile
+xen-mceinj: xen-mceinj.o Makefile
$(CC) -o $@ $< $(LDFLAGS) $(LDLIBS_libxenctrl) $(LDLIBS_libxenguest) $(LDLIBS_libxenstore)