2 # (Re)builds Python metafiles (__init__.py) and documentation
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2005 The Trustees of Princeton University
11 # Metafiles - manage Legacy/ and Accessors by hand
12 init := PLC/__init__.py PLC/Methods/__init__.py
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
18 # Other stuff - doc not implicit, it's redone by myplc-docs
19 subdirs := php php/xmlrpc
21 # autoconf compatible variables
28 all: $(init) $(subdirs)
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
44 find . -name '*.pyc' | xargs rm -f
46 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir clean ; done
47 python setup.py clean && rm -rf build
54 #################### regenerate indexes - not used by the build, as both files are svn added - please update as appropriate
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=)))
63 ifneq ($(PLC_now),$(PLC_files))
64 PLC/__init__.py: force
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()') > $@
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=))))
76 ifneq ($(METHODS_now),$(METHODS_files))
77 PLC/Methods/__init__.py: force
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()') > $@
86 .PHONY: all install force clean index tags $(subdirs)
88 #################### devel tools
90 find . '(' -name '*.py' -o -name '*.sql' -o -name '*.php' -o -name Makefile ')' | xargs etags
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
101 PLCHOST ?= testplc.onelab.eu
104 SSHURL:=root@$(PLCHOST):/vservers/$(GUEST)
105 SSHCOMMAND:=ssh root@$(PLCHOST) vserver $(GUEST)
108 SSHURL:=root@$(PLC):/
109 SSHCOMMAND:=ssh root@$(PLC)
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)
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"
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
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 +,,$@)
135 @echo "$(varname)=$($(varname))"
136 +%: varname=$(subst +,,$@)
138 @echo "$($(varname))"