moving refresh-peer.py with MyPLC where it belongs
[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 ########## make sync PLCHOST=hostname
90 ifdef PLCHOST
91 ifdef VSERVER
92 PLCSSH:=root@$(PLCHOST):/vservers/$(VSERVER)
93 endif
94 endif
95
96 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' 
97 RSYNC_EXCLUDES          := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES)
98 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
99 RSYNC                   := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
100
101 sync:
102 ifeq (,$(PLCSSH))
103         echo "sync: You must define PLCHOST and VSERVER on the command line"
104         echo " e.g. make sync PLCHOST=private.one-lab.org VSERVER=myplc01" ; exit 1
105 else
106         +$(RSYNC) PLC planetlab5.sql migrations $(PLCSSH)/usr/share/plc_api/
107         ssh root@$(PLCHOST) vserver $(VSERVER) exec apachectl graceful
108 endif
109
110 #################### convenience, for debugging only
111 # make +foo : prints the value of $(foo)
112 # make ++foo : idem but verbose, i.e. foo=$(foo)
113 ++%: varname=$(subst +,,$@)
114 ++%:
115         @echo "$(varname)=$($(varname))"
116 +%: varname=$(subst +,,$@)
117 +%:
118         @echo "$($(varname))"
119