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