add target tags
[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.4 2006/11/06 22:04:58 mlhuang Exp $
8 #
9
10 # Metafiles
11 INIT := PLC/__init__.py PLC/Methods/__init__.py
12
13 # Other stuff
14 SUBDIRS := doc php
15
16 # autoconf compatible variables
17 DESTDIR := /plc/root
18 datadir := /usr/share
19 bindir := /usr/bin
20
21 all: $(INIT) $(SUBDIRS)
22         python setup.py build
23
24 install:
25         python setup.py install \
26             --install-purelib=$(DESTDIR)/$(datadir)/plc_api \
27             --install-scripts=$(DESTDIR)/$(datadir)/plc_api \
28             --install-data=$(DESTDIR)/$(datadir)/plc_api
29
30 $(SUBDIRS): %:
31         $(MAKE) -C $@
32
33 clean:
34         find . -name '*.pyc' | xargs rm -f
35         rm -f $(INIT)
36         for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir clean ; done
37         rm -rf build
38
39 index: $(INIT)
40
41 tags:
42         find . '(' -name '*.py' -o -name '*.sql' -o -name '*.php' -o -name Makefile ')' | xargs etags
43
44
45 # All .py files in PLC/
46 PLC := $(filter-out %/__init__.py, $(wildcard PLC/*.py))
47 PLC_init := all = '$(notdir $(PLC:.py=))'.split()
48
49 PLC/__init__.py:
50         echo "$(PLC_init)" >$@
51
52 ifneq ($(sort $(PLC_init)), $(sort $(shell cat PLC/__init__.py 2>/dev/null)))
53 PLC/__init__.py: force
54 endif
55
56 # All .py files in PLC/Methods/ and PLC/Methods/system/
57 METHODS := $(filter-out %/__init__.py, $(wildcard PLC/Methods/*.py PLC/Methods/system/*.py))
58 Methods_init := methods = '$(notdir $(subst system/, system., $(METHODS:.py=)))'.split()
59
60 PLC/Methods/__init__.py:
61         echo "$(Methods_init)" >$@
62
63 ifneq ($(sort $(Methods_init)), $(sort $(shell cat PLC/Methods/__init__.py 2>/dev/null)))
64 PLC/Methods/__init__.py: force
65 endif
66
67 force:
68
69 .PHONY: all install force clean index tags $(SUBDIRS)