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