Baseline for work is Dialcentral 1.0.6-10
[theonering] / Makefile
1 PROJECT_NAME=dialcentral
2 SOURCE_PATH=src
3 SOURCE=$(shell find $(SOURCE_PATH) -iname "*.py")
4 PROGRAM=$(SOURCE_PATH)/$(PROJECT_NAME).py
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)/dc_glade.py
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         mkdir -p $(BUILD_PATH)/generic
43         cp $(SOURCE_PATH)/constants.py  $(BUILD_PATH)/generic
44         cp $(SOURCE_PATH)/$(PROJECT_NAME).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         #$(foreach file, $(OBJ), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; )
48         cp support/$(PROJECT_NAME).desktop $(BUILD_PATH)/generic
49         cp support/icons/hicolor/26x26/hildon/$(PROJECT_NAME).png $(BUILD_PATH)/generic/26x26-$(PROJECT_NAME).png
50         cp support/icons/hicolor/64x64/hildon/$(PROJECT_NAME).png $(BUILD_PATH)/generic/64x64-$(PROJECT_NAME).png
51         cp support/icons/hicolor/scalable/hildon/$(PROJECT_NAME).png $(BUILD_PATH)/generic/scale-$(PROJECT_NAME).png
52         cp support/builddeb.py $(BUILD_PATH)/generic
53         cp support/py2deb.py $(BUILD_PATH)/generic
54         cp support/fake_py2deb.py $(BUILD_PATH)/generic
55         mkdir -p $(BUILD_PATH)/chinook
56         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/chinook
57         cd $(BUILD_PATH)/chinook ; python builddeb.py chinook
58         mkdir -p $(BUILD_PATH)/diablo
59         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/diablo
60         cd $(BUILD_PATH)/diablo ; python builddeb.py diablo
61         mkdir -p $(BUILD_PATH)/fremantle
62         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/fremantle
63         cd $(BUILD_PATH)/fremantle ; python builddeb.py fremantle
64         mkdir -p $(BUILD_PATH)/mer
65         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/mer
66         cd $(BUILD_PATH)/mer ; python builddeb.py mer
67
68 lint: $(OBJ)
69         $(foreach file, $(SOURCE), $(LINT) $(file) ; )
70
71 tags: $(TAG_FILE) 
72
73 todo: $(TODO_FILE)
74
75 clean:
76         rm -Rf $(OBJ)
77         rm -Rf $(BUILD_PATH)
78         rm -Rf $(TODO_FILE)
79
80 distclean:
81         rm -Rf $(OBJ)
82         rm -Rf $(BUILD_PATH)
83         rm -Rf $(TAG_FILE)
84         find $(SOURCE_PATH) -name "*.*~" | xargs rm -f
85         find $(SOURCE_PATH) -name "*.swp" | xargs rm -f
86         find $(SOURCE_PATH) -name "*.bak" | xargs rm -f
87         find $(SOURCE_PATH) -name ".*.swp" | xargs rm -f
88
89 $(TAG_FILE): $(OBJ)
90         mkdir -p $(dir $(TAG_FILE))
91         $(CTAGS) -o $(TAG_FILE) $(SOURCE)
92
93 $(TODO_FILE): $(SOURCE)
94         @- $(TODO_FINDER) $(SOURCE) > $(TODO_FILE)
95
96 %.pyc: %.py
97         $(SYNTAX_TEST) $<
98
99 #Makefile Debugging
100 #Target to print any variable, can be added to the dependencies of any other target
101 #Userfule flags for make, -d, -p, -n
102 print-%: ; @$(error $* is $($*) ($(value $*)) (from $(origin $*)))