Missed some locations
[theonering] / Makefile
1 PROJECT_NAME=theonering
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         $(foreach file, $(DATA), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; )
45         $(foreach file, $(SOURCE), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; )
46         cp support/$(PROJECT_NAME).manager $(BUILD_PATH)/generic
47         cp support/org.freedesktop.Telepathy.ConnectionManager.$(PROJECT_NAME).service.in $(BUILD_PATH)/generic
48         cp support/icons/*-$(PROJECT_NAME).png $(BUILD_PATH)/generic/
49         cp support/builddeb.py $(BUILD_PATH)/generic
50         cp support/py2deb.py $(BUILD_PATH)/generic
51         cp support/fake_py2deb.py $(BUILD_PATH)/generic
52         mkdir -p $(BUILD_PATH)/chinook
53         cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/chinook
54         cd $(BUILD_PATH)/chinook ; python builddeb.py chinook
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
65 lint: $(OBJ)
66         $(foreach file, $(SOURCE), $(LINT) $(file) ; )
67
68 tags: $(TAG_FILE) 
69
70 todo: $(TODO_FILE)
71
72 clean:
73         rm -Rf $(OBJ)
74         rm -Rf $(BUILD_PATH)
75         rm -Rf $(TODO_FILE)
76
77 distclean:
78         rm -Rf $(OBJ)
79         rm -Rf $(BUILD_PATH)
80         rm -Rf $(TAG_FILE)
81         find $(SOURCE_PATH) -name "*.*~" | xargs rm -f
82         find $(SOURCE_PATH) -name "*.swp" | xargs rm -f
83         find $(SOURCE_PATH) -name "*.bak" | xargs rm -f
84         find $(SOURCE_PATH) -name ".*.swp" | xargs rm -f
85
86 $(TAG_FILE): $(OBJ)
87         mkdir -p $(dir $(TAG_FILE))
88         $(CTAGS) -o $(TAG_FILE) $(SOURCE)
89
90 $(TODO_FILE): $(SOURCE)
91         @- $(TODO_FINDER) $(SOURCE) > $(TODO_FILE)
92
93 %.pyc: %.py
94         $(SYNTAX_TEST) $<
95
96 #Makefile Debugging
97 #Target to print any variable, can be added to the dependencies of any other target
98 #Userfule flags for make, -d, -p, -n
99 print-%: ; @$(error $* is $($*) ($(value $*)) (from $(origin $*)))