diff --git a/Makefile b/Makefile index 23f1fbd..90c97e0 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,9 @@ -# git helper Makefile: Version 1.8 (2025-08-05) +# git helper Makefile: Version 1.9 (2025-08-05) default: help .ONESHELL: SHELL = /usr/bin/bash +MAKEFLAGS += --no-print-directory .SILENT: -include __make.d__/*.mk diff --git a/__make.d__/config.mk b/__make.d__/config.mk index ae2ecec..54b3f20 100644 --- a/__make.d__/config.mk +++ b/__make.d__/config.mk @@ -1,8 +1,9 @@ .ONESHELL: SHELL = /usr/bin/bash +MAKEFLAGS += --no-print-directory .SILENT: -localinit: +devinit: if [[ ! -e config.py ]]; then cp config_example/config.py config.py chmod 600 config.py diff --git a/__make.d__/help.mk b/__make.d__/help.mk new file mode 100644 index 0000000..e423626 --- /dev/null +++ b/__make.d__/help.mk @@ -0,0 +1,12 @@ +.ONESHELL: +SHELL = /usr/bin/bash +MAKEFLAGS += --no-print-directory +.SILENT: + +GIT_FLAG = ./.git +VENV_FLAG = ./.venv_required +VENV_FOLDER = ./venv + +localhelp: + echo "Possible local options are:" + echo " - devinit - Initialise the application for development usage" diff --git a/__make.d__/run.mk b/__make.d__/run.mk index b9edc82..f3d9547 100644 --- a/__make.d__/run.mk +++ b/__make.d__/run.mk @@ -1,5 +1,6 @@ .ONESHELL: SHELL = /usr/bin/bash +MAKEFLAGS += --no-print-directory .SILENT: run: