forked from git-cola/git-cola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
262 lines (223 loc) · 6.7 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# The default target of this Makefile is...
all::
# Development
# -----------
# make test # unit tests
# make doc # build docs
# make flake8 # style check
# make pyint3k # python2/3 compatibility checks
# make pylint # full pylint check
# # TODO pylint config, tox, yapf, others?
# Release Prep
# ------------
# make pot # update main translation template
# make po # merge translations
#
# Installation
# ------------
# make prefix=<path> install
# DESTDIR is also supported.
# The external commands used by this Makefile are...
CTAGS = ctags
CP = cp
FIND = find
FLAKE8 = flake8
GIT = git
GZIP = gzip
LN = ln
LN_S = $(LN) -s -f
MARKDOWN = markdown
MKDIR_P = mkdir -p
PIP = pip
PYLINT = pylint
PYTHON = python
PYTEST ?= pytest
RM = rm -f
RM_R = rm -fr
RMDIR = rmdir
TAR = tar
# Flags
# -----
# "make V=1" increases verbosity
# "make test V=2" increases test verbosity
# "make pylint color=1" enables colorized pylint output
# "make test flags={-x,--exitfirst}" exits on the first test failure
ifdef V
VERBOSE = --verbose
ifeq ($(V),2)
TEST_VERBOSE = --verbose
endif
else
QUIET = --quiet
endif
PYTEST_FLAGS = $(QUIET) $(TEST_VERBOSE) --doctest-modules
FLAKE8_FLAGS = --max-line-length=80 --statistics --doctests --format=pylint
PYLINT_FLAGS = --rcfile=.pylintrc
ifdef color
PYLINT_FLAGS += --output-format=colorized
endif
ifdef flags
PYTEST_FLAGS += $(flags)
endif
# These values can be overridden on the command-line or via config.mak
prefix = $(HOME)
bindir = $(prefix)/bin
datadir = $(prefix)/share/git-cola
coladir = $(datadir)/lib
hicolordir = $(prefix)/share/icons/hicolor/scalable/apps
# DESTDIR =
cola_base := git-cola
cola_app_base= $(cola_base).app
cola_app = $(CURDIR)/$(cola_app_base)
cola_version = $(shell $(PYTHON) bin/git-cola version --brief)
cola_dist := $(cola_base)-$(cola_version)
SETUP ?= $(PYTHON) setup.py
setup_args += --prefix=$(prefix)
setup_args += --force
setup_args += --install-scripts=$(bindir)
setup_args += --record=build/MANIFEST
setup_args += --install-lib=$(coladir)
ifdef DESTDIR
setup_args += --root=$(DESTDIR)
export DESTDIR
endif
export prefix
# If NO_VENDOR_LIBS is specified on the command line then pass it to setup.py
ifdef NO_VENDOR_LIBS
setup_args += --no-vendor-libs
endif
PYTHON_DIRS = cola
PYTHON_DIRS += test
ALL_PYTHON_DIRS = $(PYTHON_DIRS)
ALL_PYTHON_DIRS += extras
PYTHON_SOURCES = bin/git-cola
PYTHON_SOURCES += bin/git-dag
PYTHON_SOURCES += share/git-cola/bin/git-xbase
PYTHON_SOURCES += setup.py
# User customizations
-include config.mak
all:: build
.PHONY: all
build_version:
@GIT=$(GIT) ./extras/generate-build-version.sh 2>/dev/null || true
.PHONY: build_version
build: build_version
$(SETUP) $(VERBOSE) build
.PHONY: build
install: all
$(SETUP) $(QUIET) install $(setup_args)
$(MKDIR_P) $(DESTDIR)$(hicolordir)
$(LN_S) $(datadir)/icons/git-cola.svg $(DESTDIR)$(hicolordir)/git-cola.svg
$(LN_S) git-cola $(DESTDIR)$(bindir)/cola
$(RM_R) $(DESTDIR)$(coladir)/git_cola*
$(RM_R) git_cola.egg-info
.PHONY: install
# Maintainer's dist target
dist:
$(GIT) archive --format=tar --prefix=$(cola_dist)/ HEAD^{tree} | \
$(GZIP) -f -9 - >$(cola_dist).tar.gz
.PHONY: dist
doc:
$(MAKE) -C share/doc/git-cola all
.PHONY: doc
html:
$(MAKE) -C share/doc/git-cola html
.PHONY: html
man:
$(MAKE) -C share/doc/git-cola man
.PHONY: man
install-doc:
$(MAKE) -C share/doc/git-cola install
.PHONY: install-doc
install-html:
$(MAKE) -C share/doc/git-cola install-html
.PHONY: install-html
install-man:
$(MAKE) -C share/doc/git-cola install-man
.PHONY: install-man
uninstall:
$(RM) $(DESTDIR)$(prefix)/bin/git-cola
$(RM) $(DESTDIR)$(prefix)/bin/git-dag
$(RM) $(DESTDIR)$(prefix)/bin/cola
$(RM) $(DESTDIR)$(prefix)/share/applications/git-cola.desktop
$(RM) $(DESTDIR)$(prefix)/share/applications/git-cola-folder-handler.desktop
$(RM) $(DESTDIR)$(prefix)/share/applications/git-dag.desktop
$(RM) $(DESTDIR)$(prefix)/share/appdata/git-dag.appdata.xml
$(RM) $(DESTDIR)$(prefix)/share/appdata/git-cola.appdata.xml
$(RM) $(DESTDIR)$(prefix)/share/icons/hicolor/scalable/apps/git-cola.svg
$(RM_R) $(DESTDIR)$(prefix)/share/doc/git-cola
$(RM_R) $(DESTDIR)$(prefix)/share/git-cola
$(RM) $(DESTDIR)$(prefix)/share/locale/*/LC_MESSAGES/git-cola.mo
-$(RMDIR) $(DESTDIR)$(prefix)/share/applications 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/appdata 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/doc 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/locale/*/LC_MESSAGES 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/locale/* 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/locale 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/icons/hicolor/scalable/apps 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/icons/hicolor/scalable 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/icons/hicolor 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share/icons 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/share 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix)/bin 2>/dev/null
-$(RMDIR) $(DESTDIR)$(prefix) 2>/dev/null
.PHONY: uninstall
test: all
$(PYTEST) $(PYTEST_FLAGS) $(PYTHON_DIRS)
.PHONY: test
coverage:
$(PYTEST) $(PYTEST_FLAGS) --cov=cola $(PYTHON_DIRS)
.PHONY: coverage
clean:
$(FIND) $(ALL_PYTHON_DIRS) -name '*.py[cod]' -print0 | xargs -0 rm -f
$(RM_R) build dist tags git-cola.app
$(RM_R) share/locale
$(MAKE) -C share/doc/git-cola clean
.PHONY: clean
tags:
$(FIND) $(ALL_PYTHON_DIRS) -name '*.py' -print0 | xargs -0 $(CTAGS) -f tags
.PHONY: tags
# Update i18n files
i18n: pot mo
.PHONY: i18n
pot:
$(SETUP) build_pot --build-dir=po --no-lang
.PHONY: pot
po:
$(SETUP) build_pot --build-dir=po
.PHONY: po
mo:
$(SETUP) build_mo --force
.PHONY: mo
git-cola.app:
$(MKDIR_P) $(cola_app)/Contents/MacOS
$(MKDIR_P) $(cola_app)/Contents/Resources
$(CP) contrib/darwin/Info.plist contrib/darwin/PkgInfo $(cola_app)/Contents
$(CP) contrib/darwin/git-cola $(cola_app)/Contents/MacOS
$(CP) contrib/darwin/git-cola.icns $(cola_app)/Contents/Resources
$(MAKE) prefix=$(cola_app)/Contents/Resources install install-doc
.PHONY: git-cola.app
app-tarball: git-cola.app
$(TAR) czf $(cola_dist).app.tar.gz $(cola_app_base)
.PHONY: app-tarball
# Preview the markdown using "make README.html"
%.html: %.md
$(MARKDOWN) $< >$@
flake8:
$(FLAKE8) $(FLAKE8_FLAGS) $(PYTHON_SOURCES) $(PYTHON_DIRS)
.PHONY: flake8
pylint3k:
$(PYLINT) $(PYLINT_FLAGS) --py3k $(flags) $(PYTHON_SOURCES) $(ALL_PYTHON_DIRS)
.PHONY: pylint3k
pylint:
$(PYLINT) $(PYLINT_FLAGS) $(flags) $(PYTHON_SOURCES) $(ALL_PYTHON_DIRS)
.PHONY: pylint
pylint-check:
$(PYLINT) $(PYLINT_FLAGS) $(flags) $(file)
.PHONY: pylint-check
requirements:
$(PIP) install --requirement requirements/requirements.txt
.PHONY: requirements
requirements-dev:
$(PIP) install --requirement requirements/requirements-dev.txt
.PHONY: requirements-dev