aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorkraxel <kraxel>2005-12-16 13:55:36 +0000
committerkraxel <kraxel>2005-12-16 13:55:36 +0000
commite68bbe1296220b4f47733c8c5843c930676dcd6a (patch)
tree89265ccbd1d493f05e1b8b7bf6899b386c93c6a3 /GNUmakefile
parent773bcf34b9ec8720822d36d07516fb861bc695f5 (diff)
downloadxenwatch-e68bbe1296220b4f47733c8c5843c930676dcd6a.tar.gz
- add some control stuff.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 3ed3abe..ae9b3b6 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -31,12 +31,12 @@ ifeq ($(HAVE_GTK),yes)
endif
# xenstore
-ifeq ($(XENSRC),)
- LDLIBS += -lxenstore
-else
+ifneq ($(XENSRC),)
CFLAGS += -I $(XENSRC)/dist/install/usr/include
- LDLIBS += -I $(XENSRC)/dist/install/usr/$(LIB) -lxenstore
+ LDLIBS += -I $(XENSRC)/dist/install/usr/$(LIB)
endif
+xenlog : LDLIBS += -lxenstore
+xenwatch : LDLIBS += -lxenstore -lxc
########################################################################