aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests/xen-access/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tests/xen-access/Makefile')
-rw-r--r--tools/tests/xen-access/Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/tools/tests/xen-access/Makefile b/tools/tests/xen-access/Makefile
index b3555aba70..65eef99304 100644
--- a/tools/tests/xen-access/Makefile
+++ b/tools/tests/xen-access/Makefile
@@ -4,28 +4,24 @@ include $(XEN_ROOT)/tools/Rules.mk
CFLAGS += -Werror
CFLAGS += $(CFLAGS_libxenctrl)
+CFLAGS += $(CFLAGS_libxenguest)
CFLAGS += $(CFLAGS_xeninclude)
TARGETS-y :=
TARGETS-$(CONFIG_X86) += xen-access
TARGETS := $(TARGETS-y)
-SUBDIRS-y :=
-SUBDIRS := $(SUBDIRS-y)
-
.PHONY: all
all: build
.PHONY: build
build: $(TARGETS)
- set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d; done
.PHONY: clean
clean:
$(RM) *.o $(TARGETS) *~ $(DEPS)
- set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done
-xen-access: %: %.o Makefile
- $(CC) -o $@ $< $(LDFLAGS) $(LDLIBS_libxenctrl)
+xen-access: xen-access.o Makefile
+ $(CC) -o $@ $< $(LDFLAGS) $(LDLIBS_libxenctrl) $(LDLIBS_libxenguest)
-include $(DEPS)