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