aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorkraxel <kraxel>2006-07-03 12:00:31 +0000
committerkraxel <kraxel>2006-07-03 12:00:31 +0000
commit8f4db7fb5130a0b327154eddc62b161fb66af688 (patch)
treecb43a91e2fdd769e7285c8f7fa76e0a4e83173fb /GNUmakefile
parenta27248c91a6a7a48ce794efc4ed51cc9a6e7172b (diff)
downloadxenwatch-8f4db7fb5130a0b327154eddc62b161fb66af688.tar.gz
xen screen management tool
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile17
1 files changed, 10 insertions, 7 deletions
diff --git a/GNUmakefile b/GNUmakefile
index cfe8f0e..aa6b11a 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -6,11 +6,11 @@ include mk/Variables.mk
CFLAGS += -DVERSION='"$(VERSION)"' -DLIB='"$(LIB)"'
# build
-TARGETS := xenlog
+TARGETS := xenlog xenscreen
BUILD_GTK := xenwatch mdns-browser
BUILD_MDNS := mdns-publish-xendom
-NEEDS_XENSTORE := xenlog xenwatch mdns-publish-xendom
+NEEDS_XENSTORE := xenlog xenscreen xenwatch mdns-publish-xendom
NEEDS_GTK := xenwatch mdns-browser
NEEDS_MDNS := xenwatch mdns-browser mdns-publish-xendom
@@ -62,8 +62,9 @@ $(NEEDS_XENSTORE) : LDLIBS += -lxenstore
build: $(TARGETS)
install: build
- install -d $(bindir)
- install -s $(TARGETS) $(bindir)
+ $(INSTALL_DIR) -d /etc/xen # $(bindir)
+ $(INSTALL_DATA) xenscreenrc /etc/xen
+ $(INSTALL_BINARY) -s $(TARGETS) $(bindir)
clean:
-rm -f *.o *~ $(depfiles)
@@ -74,9 +75,11 @@ realclean distclean: clean
#############################################
-xenlog: xenlog.o
-xenwatch: xenwatch.o xs_view.o xs_store.o xd_view.o xd_store.o apps.o tcp.o mdns.o
-mdns-browser: mdns-browser.o mdns.o apps.o
+xenlog: xenlog.o xenstore.o
+xenscreen: xenscreen.o xenstore.o apps.o
+xenwatch: xenwatch.o xs_view.o xs_store.o xd_view.o xd_store.o \
+ apps.o apps-x11.o tcp.o mdns.o
+mdns-browser: mdns-browser.o mdns.o apps.o apps-x11.o
mdns-publish-xendom: mdns-publish-xendom.o
include mk/Compile.mk