Show More
@@ -5,10 +5,17 b' NODE_PATH=./node_modules' | |||
|
5 | 5 | FLAKE8=flake8 setup.py pytest_pylons/ rhodecode/ --select=E124 --ignore=E711,E712,E510,E121,E122,E126,E127,E128,E501,F401 --max-line-length=100 --exclude=*rhodecode/lib/dbmigrate/*,*rhodecode/tests/*,*rhodecode/lib/vcs/utils/* |
|
6 | 6 | CI_PREFIX=enterprise |
|
7 | 7 | |
|
8 |
.PHONY: |
|
|
8 | .PHONY: docs docs-clean ci-docs clean test test-clean test-lint test-only | |
|
9 | ||
|
10 | ||
|
11 | docs: | |
|
12 | (cd docs; nix-build default.nix -o result; make clean html) | |
|
9 | 13 |
|
|
10 | help: | |
|
11 | @echo "TODO: describe Makefile" | |
|
14 | docs-clean: | |
|
15 | (cd docs; make clean) | |
|
16 | ||
|
17 | ci-docs: docs; | |
|
18 | ||
|
12 | 19 | |
|
13 | 20 | clean: test-clean |
|
14 | 21 | find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -exec rm '{}' ';' |
@@ -37,3 +44,4 b' web-test:' | |||
|
37 | 44 | docs-bootstrap: |
|
38 | 45 | (cd docs; nix-build default.nix -o result) |
|
39 | 46 | @echo "Please go to docs folder and run make html" |
|
47 |
General Comments 0
You need to be logged in to leave comments.
Login now