improve comments on make sync before pasting that into lxc-userspace
[nodemanager.git] / Makefile
1 #
2 # Node Manager Makefile
3 #
4 # David Eisenstat <deisenst@cs.princeton.edu>
5 # Mark Huang <mlhuang@cs.princeton.edu>
6 # Copyright (C) 2006 The Trustees of Princeton University
7 #
8
9 # autoconf compatible variables
10 datadir := /usr/share
11 bindir := /usr/bin
12
13 lib: forward_api_calls
14         python setup-lib.py build
15
16 vs: 
17         python setup-vs.py build
18
19 lxc: 
20         python setup-lxc.py build
21
22 forward_api_calls: forward_api_calls.c
23         $(CC) -Wall -Os -o $@ $?
24         strip $@
25
26 install-lib:
27         python setup-lib.py install \
28             --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \
29             --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \
30             --install-scripts=$(DESTDIR)/$(bindir)
31         install -m 444 README $(DESTDIR)/$(datadir)/NodeManager
32
33 install-vs:
34         python setup-vs.py install \
35             --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \
36             --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \
37             --install-scripts=$(DESTDIR)/$(bindir)
38         install -m 444 README $(DESTDIR)/$(datadir)/NodeManager
39
40 install-lxc:
41         python setup-lxc.py install \
42             --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \
43             --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \
44             --install-scripts=$(DESTDIR)/$(bindir)
45         install -m 444 README $(DESTDIR)/$(datadir)/NodeManager
46
47 clean:
48         python setup-lib.py clean
49         python setup-vs.py clean
50         python setup-lxc.py clean
51         rm -f forward_api_calls *.pyc build
52
53 .PHONY: all install clean
54
55 ##########
56 tags:
57         (find . '(' -name '*.py' -o -name '*.c' -o -name '*.spec' ')' ; ls initscripts/*) | xargs etags 
58
59 .PHONY: tags
60
61 ########## sync
62 # for use with the test framework; push local stuff on a test node
63 # howto use: go on testmaster in the build you want to use and just run
64 # $ exp
65 # cut'n paste the result in a terminal in your working dir, e.g. (although all are not required)
66 # $ export BUILD=2013.07.02--lxc18
67 # $ export PLCHOSTLXC=gotan.pl.sophia.inria.fr
68 # $ export GUESTNAME=2013.07.02--lxc18-1-vplc01
69 # $ export GUESTHOSTNAME=vplc01.pl.sophia.inria.fr
70 # $ export KVMHOST=kvm64-6.pl.sophia.inria.fr
71 # $ export NODE=vnode01.pl.sophia.inria.fr
72 # and then just run
73 # $ make sync
74
75 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' 
76 RSYNC_EXCLUDES          := --exclude .git  --exclude .svn --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES)
77 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
78 RSYNC                   := rsync -e "ssh -i $(NODE).key.rsa" -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
79
80 ifdef NODE
81 NODEURL:=root@$(NODE):/
82 endif
83
84 sync: $(NODE).key.rsa
85 ifeq (,$(NODEURL))
86         @echo "sync: You must define NODE on the command line"
87         @echo "  e.g. make sync NODE=vnode01.inria.fr"
88         @exit 1
89 else
90         +$(RSYNC) --exclude sshsh ./ $(NODEURL)/usr/share/NodeManager/
91         +$(RSYNC) ./sshsh $(NODEURL)/bin/
92         +$(RSYNC) ./initscripts/nm $(NODEURL)/etc/init.d/nm
93         ssh -i $(NODE).key.rsa root@$(NODE) service nm restart
94 endif
95
96 ### fetching the key
97
98 TESTMASTER ?= testmaster.onelab.eu
99
100 ifdef BUILD
101 KEYURL:=root@$(TESTMASTER):$(BUILD)/keys/key_admin.rsa
102 endif
103
104 key: $(NODE).key.rsa
105
106 $(NODE).key.rsa:
107 ifeq (,$(KEYURL))
108         @echo "sync: fetching $@ - You must define TESTMASTER, BUILD and NODE on the command line"
109         @echo "  e.g. make sync TESTMASTER=testmaster.onelab.eu BUILD=2010.01.22--1l-f8-32 NODE=vnode01.inria.fr"
110         @echo "  note that for now all test builds use the same key, so any BUILD would do"
111         @exit 1
112 else
113         @echo "FETCHING key"
114         +scp $(KEYURL) $@
115 endif