- install refresh-peer.py script
[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: Makefile,v 1.11 2006/12/18 17:55:58 mlhuang Exp $
8 #
9
10 # Metafiles
11 init := PLC/__init__.py PLC/Methods/__init__.py
12
13 # Python modules
14 modules := psycopg2
15
16 # Temporarily until we can kill the Fedora Core 2 build
17 curl_vernum := $(shell printf %d 0x$(shell curl-config --vernum))
18 pycurl_vernum := $(shell printf %d 0x070d01) # 7.13.1
19 ifeq ($(shell test $(curl_vernum) -ge $(pycurl_vernum) && echo 1),1)
20 modules += pycurl
21 endif
22
23 modules-install := $(foreach module, $(modules), $(module)-install)
24 modules-clean := $(foreach module, $(modules), $(module)-clean)
25
26 # Other stuff
27 subdirs := doc php php/xmlrpc
28
29 # autoconf compatible variables
30 DESTDIR := /plc/root
31 datadir := /usr/share
32 bindir := /usr/bin
33
34 PWD := $(shell pwd)
35
36 all: $(init) $(subdirs) $(modules)
37         python setup.py build
38
39 install: $(modules-install)
40         python setup.py install \
41             --install-purelib=$(DESTDIR)/$(datadir)/plc_api \
42             --install-scripts=$(DESTDIR)/$(datadir)/plc_api \
43             --install-data=$(DESTDIR)/$(datadir)/plc_api
44         install -D -m 755 php/xmlrpc/xmlrpc.so $(DESTDIR)/$(shell php-config --extension-dir)/xmlrpc.so
45         install -D -m 755 refresh-peer.py $(DESTDIR)/$(bindir)/refresh-peer.py
46
47 $(subdirs): $(init) $(modules)
48
49 $(subdirs): %:
50         $(MAKE) -C $@
51
52 $(modules):
53         # Install in the current directory so that we can import it while developing
54         cd $@ && \
55             python setup.py build && \
56             python setup.py install_lib --install-dir=$(PWD)
57
58 $(modules-install): %-install:
59         cd $* && \
60             python setup.py install_lib --install-dir=$(DESTDIR)/$(datadir)/plc_api
61
62 $(modules-clean): %-clean:
63         cd $* && python setup.py clean && rm -rf build
64
65 clean: $(modules-clean)
66         find . -name '*.pyc' | xargs rm -f
67         rm -f $(INIT)
68         for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir clean ; done
69         python setup.py clean && rm -rf build
70
71 index: $(init)
72
73 tags:
74         find . '(' -name '*.py' -o -name '*.sql' -o -name '*.php' -o -name Makefile ')' | xargs etags
75
76 # All .py files in PLC/
77 PLC := $(filter-out %/__init__.py, $(wildcard PLC/*.py))
78 PLC_init := all = '$(notdir $(PLC:.py=))'.split()
79
80 PLC/__init__.py:
81         echo "$(PLC_init)" >$@
82
83 ifneq ($(sort $(PLC_init)), $(sort $(shell cat PLC/__init__.py 2>/dev/null)))
84 PLC/__init__.py: force
85 endif
86
87 # All .py files in PLC/Methods/ and PLC/Methods/system/
88 METHODS := $(filter-out %/__init__.py, $(wildcard PLC/Methods/*.py PLC/Methods/system/*.py))
89 Methods_init := methods = '$(notdir $(subst system/, system., $(METHODS:.py=)))'.split()
90
91 PLC/Methods/__init__.py:
92         echo "$(Methods_init)" >$@
93
94 ifneq ($(sort $(Methods_init)), $(sort $(shell cat PLC/Methods/__init__.py 2>/dev/null)))
95 PLC/Methods/__init__.py: force
96 endif
97
98 force:
99
100 .PHONY: all install force clean index tags $(subdirs) $(modules)