Chore: update makefile

This commit is contained in:
Dorian Zedler 2022-07-17 12:36:22 +02:00
parent d5c3c50a18
commit d0b4c58c91
Signed by: dorian
GPG Key ID: 989DE36109AFA354
1 changed files with 14 additions and 1 deletions

View File

@ -3,6 +3,7 @@
.ONESHELL: ; # recipes execute in same shell
.NOTPARALLEL: ; # wait for this target to finish
.EXPORT_ALL_VARIABLES: ; # send all vars to shell
.DEFAULT_GOAL := help
UID := $(shell id -u)
GID := $(shell id -g)
@ -15,4 +16,16 @@ pull:
chown:
sudo chown -R $(UID):$(GID) .
deploy:
docker run --rm -it -v ~/.ssh:/root/.ssh -v ${PWD}:/docs squidfunk/mkdocs-material gh-deploy
docker run --rm -it -v ~/.ssh:/root/.ssh -v ${PWD}:/docs squidfunk/mkdocs-material gh-deploy
clean:
rm -rf ./env ./site
help:
@echo "=== Project build help ==="
@echo ""
@echo "These targets are available:"
@echo "- watch"
@echo "- pull"
@echo "- chown"
@echo "- deploy"
@echo "- clean"