projects
/
cookiecutter.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix a leftover from real code
[cookiecutter.git]
/
project_template
/
Makefile
1
2
.PHONY: all
3
all:
4
@echo "Nothing to be done for 'all'"
5
6
.PHONY: release
7
release: tests flake8 html distr
8
9
.PHONY: distr
10
distr:
11
./mk-distr
12
13
.PHONY: flake8
14
flake8:
15
flake8
16
17
.PHONY: html
18
html:
19
$(MAKE) -C docs html
20
21
.PHONY: test
22
test:
23
$(MAKE) -C tests
24
25
.PHONY: tests
26
tests: test
27
28
.PHONY: clean
29
clean:
30
find . -name '*.py[co]' -type f -delete