Trying to adapt to the Maemo 5, bumping to 0.1.0-3
[theonering] / Makefile
1 PROJECT_NAME=theonering
2 SOURCE_PATH=src
3 SOURCE=$(shell find $(SOURCE_PATH) -iname "*.py")
4 PROGRAM=$(SOURCE_PATH)/telepathy-$(PROJECT_NAME)
5 DATA_TYPES=*.ini *.map *.glade *.png
6 DATA=$(foreach type, $(DATA_TYPES), $(shell find $(SOURCE_PATH) -iname "$(type)"))
7 OBJ=$(SOURCE:.py=.pyc)
8 BUILD_PATH=./build
9 TAG_FILE=~/.ctags/$(PROJECT_NAME).tags
10 TODO_FILE=./TODO
11
12 DEBUGGER=winpdb
13 UNIT_TEST=nosetests --with-doctest -w .
14 SYNTAX_TEST=support/test_syntax.py
15 STYLE_TEST=../../Python/tools/pep8.py --ignore=W191,E501
16 LINT_RC=./support/pylint.rc
17 LINT=pylint --rcfile=$(LINT_RC)
18 PROFILE_GEN=python -m cProfile -o .profile
19 PROFILE_VIEW=python -m pstats .profile
20 TODO_FINDER=support/todo.py
21 CTAGS=ctags-exuberant
22
23 .PHONY: all run profile debug test build lint tags todo clean distclean
24
25 all: test
26
27 run: $(OBJ)
28         $(SOURCE_PATH)/telepathy-theonering
29
30 profile: $(OBJ)
31         $(PROFILE_GEN) $(PROGRAM)
32         $(PROFILE_VIEW)
33
34 debug: $(OBJ)
35         $(DEBUGGER) $(PROGRAM)
36
37 test: $(OBJ)
38         $(UNIT_TEST)
39
40 package: $(OBJ)
41         rm -Rf $(BUILD_PATH)
42
43         mkdir -p $(BUILD_PATH)/generic
44         cp $(SOURCE_PATH)/constants.py  $(BUILD_PATH)/generic
45         $(foreach file, $(DATA), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; )
46         $(foreach file, $(SOURCE), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; )
47         cp support/$(PROJECT_NAME).manager $(BUILD_PATH)/generic
48         cp support/$(PROJECT_NAME).profile $(BUILD_PATH)/generic
49         cp support/org.freedesktop.Telepathy.ConnectionManager.$(PROJECT_NAME).service $(BUILD_PATH)/generic
50         cp support/icons/*-$(PROJECT_NAME).png $(BUILD_PATH)/generic/
51         cp support/builddeb.py $(BUILD_PATH)/generic
52         cp support/py2deb.py $(BUILD_PATH)/generic
53         cp support/fake_py2deb.py $(BUILD_PATH)/generic
54
55         mkdir -p $(BUILD_PATH)/diablo
56         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/diablo
57         cd $(BUILD_PATH)/diablo ; python builddeb.py diablo
58         mkdir -p $(BUILD_PATH)/fremantle
59         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/fremantle
60         cd $(BUILD_PATH)/fremantle ; python builddeb.py fremantle
61         mkdir -p $(BUILD_PATH)/mer
62         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/mer
63         cd $(BUILD_PATH)/mer ; python builddeb.py mer
64         mkdir -p $(BUILD_PATH)/debian
65         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/debian
66         cd $(BUILD_PATH)/debian ; python builddeb.py debian
67
68 upload:
69         dput fremantle-extras-builder $(BUILD_PATH)/fremantle/telepathy-$(PROJECT_NAME)*.changes
70         dput diablo-extras-builder $(BUILD_PATH)/diablo/telepathy-$(PROJECT_NAME)*.changes
71         cp $(BUILD_PATH)/debian/*.deb www/telepathy-$(PROJECT_NAME).deb
72
73 lint: $(OBJ)
74         $(foreach file, $(SOURCE), $(LINT) $(file) ; )
75
76 tags: $(TAG_FILE) 
77
78 todo: $(TODO_FILE)
79
80 clean:
81         rm -Rf $(OBJ)
82         rm -Rf $(BUILD_PATH)
83         rm -Rf $(TODO_FILE)
84
85 distclean:
86         rm -Rf $(OBJ)
87         rm -Rf $(BUILD_PATH)
88         rm -Rf $(TAG_FILE)
89         find $(SOURCE_PATH) -name "*.*~" | xargs rm -f
90         find $(SOURCE_PATH) -name "*.swp" | xargs rm -f
91         find $(SOURCE_PATH) -name "*.bak" | xargs rm -f
92         find $(SOURCE_PATH) -name ".*.swp" | xargs rm -f
93
94 $(TAG_FILE): $(OBJ)
95         mkdir -p $(dir $(TAG_FILE))
96         $(CTAGS) -o $(TAG_FILE) $(SOURCE)
97
98 $(TODO_FILE): $(SOURCE)
99         @- $(TODO_FINDER) $(SOURCE) > $(TODO_FILE)
100
101 %.pyc: %.py
102         $(SYNTAX_TEST) $<
103
104 #Makefile Debugging
105 #Target to print any variable, can be added to the dependencies of any other target
106 #Userfule flags for make, -d, -p, -n
107 print-%: ; @$(error $* is $($*) ($(value $*)) (from $(origin $*)))