diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-23 15:02:32 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-23 15:02:32 +0100 |
| commit | 21ba25ebb8deba7ffa6537e6c1196546604de712 (patch) | |
| tree | 31833607fb181a2e8c9c0160da4fa480321de536 /Makefile | |
| parent | 62da7699529b57f3bf851ec9258da89be42094dc (diff) | |
| parent | baddb8d3eb856344129fb4b320bd17bba9456477 (diff) | |
Merge branch 'filtron' of https://github.com/return42/searx into filtron
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -12,8 +12,13 @@ include utils/makefile.sphinx all: clean install -PHONY += help -help: +PHONY += help-min help-all help + +help: help-min + @echo '' + @echo 'to get more help: make help-all' + +help-min: @echo ' test - run developer tests' @echo ' docs - build documentation' @echo ' docs-live - autobuild HTML documentation while editing' @@ -29,9 +34,13 @@ help: @echo ' GIT_URL = $(GIT_URL)' @echo ' DOCS_URL = $(DOCS_URL)' @echo '' - @$(MAKE) -e -s -f utils/makefile.include make-help + @$(MAKE) -e -s make-help + +help-all: help-min + @echo '' + @$(MAKE) -e -s python-help @echo '' - @$(MAKE) -e -s -f utils/makefile.python python-help + @$(MAKE) -e -s docs-help PHONY += install install: pyenvinstall |