diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-18 16:11:05 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-18 16:11:05 +0100 |
commit | f09459b98ae877d7dfd40d85c0edf058c65913d5 (patch) | |
tree | aba29f2e12b20a7c54687d8456869a6224820437 /Makefile | |
parent | da56bda26542de5697691ff80dac6df876fb366b (diff) | |
download | searxng-f09459b98ae877d7dfd40d85c0edf058c65913d5.tar.gz searxng-f09459b98ae877d7dfd40d85c0edf058c65913d5.zip |
doc: describe Makefile targets
With the aim to simplify development cycles, started with PR #1756 a Makefile
based boilerplate was added. This patch adds the missing developer
documentation.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -8,6 +8,9 @@ PYOBJECTS = searx DOC = docs PY_SETUP_EXTRAS ?= \[test\] +PYDIST=./dist/py +PYBUILD=./build/py + include utils/makefile.include include utils/makefile.python include utils/makefile.sphinx @@ -23,6 +26,7 @@ help: @echo ' install - developer install (./local)' @echo ' uninstall - uninstall (./local)' @echo ' gh-pages - build docs & deploy on gh-pages branch' + @echo ' clean - drop builds and environments' @echo '' @$(MAKE) -s -f utils/makefile.include make-help @echo '' |