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/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/tests/xen-access/Makefile b/tools/tests/xen-access/Makefile
index 63548ccb6a..b3555aba70 100644
--- a/tools/tests/xen-access/Makefile
+++ b/tools/tests/xen-access/Makefile
@@ -25,10 +25,7 @@ clean:
$(RM) *.o $(TARGETS) *~ $(DEPS)
set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done
-%.o: %.c Makefile
- $(CC) -c $(CFLAGS) -o $@ $<
-
xen-access: %: %.o Makefile
- $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LDLIBS_libxenctrl)
-# $(LDLIBS_libxenguest) $(LDLIBS_libxenstore)
+ $(CC) -o $@ $< $(LDFLAGS) $(LDLIBS_libxenctrl)
+
-include $(DEPS)