syncs plcsh too - useful when debugging a broken api
[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 - manage Legacy/ and Accessors by hand
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
55 ########## PLC/
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 ########## Methods/
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 'native_methods = """' ; cd PLC/Methods; ls -1 *.py system/*.py | grep -v __init__ | sed -e 's,.py$$,,' -e 's,system/,system.,' ; echo '""".split()') > $@
80
81 ##########
82 force:
83
84 .PHONY: all install force clean index tags $(subdirs)
85
86 #################### devel tools
87 tags:
88         find . '(' -name '*.py' -o -name '*.sql' -o -name '*.php' -o -name Makefile ')' | xargs etags
89
90 .PHONY: tags
91
92 ########## sync
93 # 2 forms are supported
94 # (*) if your plc root context has direct ssh access:
95 # make sync PLC=private.one-lab.org
96 # (*) otherwise, entering through the root context
97 # make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr
98
99 ifdef GUEST
100 ifdef PLCHOST
101 SSHURL:=root@$(PLCHOST):/vservers/$(GUEST)
102 SSHCOMMAND:=ssh root@$(PLCHOST) vserver $(GUEST)
103 endif
104 endif
105 ifdef PLC
106 SSHURL:=root@$(PLC):/
107 SSHCOMMAND:=ssh root@$(PLC)
108 endif
109
110 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' 
111 RSYNC_EXCLUDES          := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES)
112 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
113 RSYNC                   := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
114
115 sync:
116 ifeq (,$(SSHURL))
117         @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line"
118         @echo "  e.g. make sync PLC=private.one-lab.org"
119         @echo "  or   make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr"
120         @exit 1
121 else
122         +$(RSYNC) plcsh PLC planetlab5.sql migrations $(SSHURL)/usr/share/plc_api/
123         $(SSHCOMMAND) exec apachectl graceful
124 endif
125
126 #################### convenience, for debugging only
127 # make +foo : prints the value of $(foo)
128 # make ++foo : idem but verbose, i.e. foo=$(foo)
129 ++%: varname=$(subst +,,$@)
130 ++%:
131         @echo "$(varname)=$($(varname))"
132 +%: varname=$(subst +,,$@)
133 +%:
134         @echo "$($(varname))"
135