can sync directly into an ssh-enabled vserver
[plcapi.git] / Makefile
1 #
2 # (Re)builds Python metafiles (__init__.py) and documentation
3 #
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2005 The Trustees of Princeton University
6 #
7 # $Id$
8 #
9
10 # Metafiles
11 init := PLC/__init__.py PLC/Methods/__init__.py
12
13 # python-pycurl and python-psycopg2 avail. from fedora 5
14 # we used to ship our own version of psycopg2 and pycurl, for fedora4
15 # starting with 5.0, support for these two modules is taken out
16
17 # Other stuff - doc not implicit, it's redone by myplc-docs
18 subdirs := php php/xmlrpc
19
20 # autoconf compatible variables
21 DESTDIR := /
22 datadir := /usr/share
23 bindir := /usr/bin
24
25 PWD := $(shell pwd)
26
27 all: $(init) $(subdirs) 
28         python setup.py build
29
30 install: 
31         python setup.py install \
32             --install-purelib=$(DESTDIR)/$(datadir)/plc_api \
33             --install-scripts=$(DESTDIR)/$(datadir)/plc_api \
34             --install-data=$(DESTDIR)/$(datadir)/plc_api
35         install -D -m 755 php/xmlrpc/xmlrpc.so $(DESTDIR)/$(shell php-config --extension-dir)/xmlrpc.so
36
37 $(subdirs): $(init)
38
39 $(subdirs): %:
40         $(MAKE) -C $@
41
42 clean: 
43         find . -name '*.pyc' | xargs rm -f
44         rm -f $(INIT)
45         for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir clean ; done
46         python setup.py clean && rm -rf build
47
48 index: $(init)
49
50 index-clean:
51         rm $(init)
52
53 #################### regenerate indexes - not used by the build, as both files are svn added - please update as appropriate
54 # All .py files in PLC/
55
56 # the current content of __init__.py
57 PLC_now := $(sort $(shell fgrep -v '"' PLC/__init__.py 2>/dev/null))
58 # what should be declared
59 PLC_paths := $(filter-out %/__init__.py, $(wildcard PLC/*.py))
60 PLC_files := $(sort $(notdir $(PLC_paths:.py=)))
61
62 ifneq ($(PLC_now),$(PLC_files))
63 PLC/__init__.py: force
64 endif
65 PLC/__init__.py: 
66         (echo 'all = """' ; cd PLC; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@
67
68
69 # the current content of __init__.py
70 METHODS_now := $(sort $(shell fgrep -v '"' PLC/Methods/__init__.py 2>/dev/null))
71 # what should be declared
72 METHODS_paths := $(filter-out %/__init__.py, $(wildcard PLC/Methods/*.py PLC/Methods/system/*.py))
73 METHODS_files := $(sort $(notdir $(subst system/, system., $(METHODS_paths:.py=))))
74
75 ifneq ($(METHODS_now),$(METHODS_files))
76 PLC/Methods/__init__.py: force
77 endif
78 PLC/Methods/__init__.py: 
79         (echo 'methods = """' ; cd PLC/Methods; ls -1 *.py system/*.py | grep -v __init__ | sed -e 's,.py$$,,' -e 's,system/,system.,' ; echo '""".split()') > $@
80
81 force:
82
83 .PHONY: all install force clean index tags $(subdirs)
84
85 #################### devel tools
86 tags:
87         find . '(' -name '*.py' -o -name '*.sql' -o -name '*.php' -o -name Makefile ')' | xargs etags
88
89 .PHONY: tags
90
91 ########## sync
92 # 2 forms are supported
93 # (*) if your plc root context has direct ssh access:
94 # make sync PLC=private.one-lab.org
95 # (*) otherwise, entering through the root context
96 # make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr
97
98 ifdef VSERVER
99 ifdef PLCHOST
100 SSHURL:=root@$(PLCHOST):/vservers/$(VSERVER)
101 SSHCOMMAND:=ssh root@$(PLCHOST) vserver $(VSERVER)
102 endif
103 endif
104 ifdef PLC
105 SSHURL:=root@$(PLC):/
106 SSHCOMMAND:=ssh root@$(PLC)
107 endif
108
109 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' 
110 RSYNC_EXCLUDES          := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES)
111 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
112 RSYNC                   := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
113
114 sync:
115 ifeq (,$(SSHURL))
116         @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line"
117         @echo "  e.g. make sync PLC=private.one-lab.org"
118         @echo "  or   make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr"
119         @exit 1
120 else
121         +$(RSYNC) PLC planetlab5.sql migrations $(SSHURL)/usr/share/plc_api/
122         $(SSHCOMMAND) exec apachectl graceful
123 endif
124
125 #################### convenience, for debugging only
126 # make +foo : prints the value of $(foo)
127 # make ++foo : idem but verbose, i.e. foo=$(foo)
128 ++%: varname=$(subst +,,$@)
129 ++%:
130         @echo "$(varname)=$($(varname))"
131 +%: varname=$(subst +,,$@)
132 +%:
133         @echo "$($(varname))"
134