diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-15 17:01:36 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-15 17:01:36 +0100 |
commit | 86e79488aab3ff434c6682a9464ba2eee49158e9 (patch) | |
tree | 3ad002dc0c5467ab9fec9e2a65b8124304c1bac4 /Makefile | |
parent | 26b85659c0b7c9bf545dfe4edeedc3ccf247bc97 (diff) | |
download | searxng-86e79488aab3ff434c6682a9464ba2eee49158e9.tar.gz searxng-86e79488aab3ff434c6682a9464ba2eee49158e9.zip |
LXC: utils/makefile.lxc (inital) add /.lxcenv.mk to contaiiners
Get LXC environment when building make targets.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -1,15 +1,12 @@ # -*- coding: utf-8; mode: makefile-gmake -*- .DEFAULT_GOAL=help include ./.config.mk +include utils/makefile.include 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 @@ -32,9 +29,9 @@ help: @echo ' GIT_URL = $(GIT_URL)' @echo ' DOCS_URL = $(DOCS_URL)' @echo '' - @$(MAKE) -s -f utils/makefile.include make-help + @$(MAKE) -e -s -f utils/makefile.include make-help @echo '' - @$(MAKE) -s -f utils/makefile.python python-help + @$(MAKE) -e -s -f utils/makefile.python python-help PHONY += install install: pyenvinstall @@ -43,7 +40,7 @@ PHONY += uninstall uninstall: pyenvuninstall PHONY += clean -clean: pyclean +clean: pyclean docs-clean $(call cmd,common_clean) PHONY += run |