diff options
author | EuAndreh <eu@euandre.org> | 2020-12-03 17:22:22 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-03 17:22:22 -0300 |
commit | 007651e3c4fe0219dba496821d78322ed929c12f (patch) | |
tree | 48b38036535f1ee82bdea5f4c124f003194b68e9 | |
parent | TODOs.org (diff) | |
download | server-007651e3c4fe0219dba496821d78322ed929c12f.tar.gz server-007651e3c4fe0219dba496821d78322ed929c12f.tar.xz |
Makefile: Add .PHONY targets
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2,12 +2,13 @@ check: bash scripts/assert-shellcheck.sh bash scripts/assert-todos.sh - bash scripts/assert-terraform.sh +.PHONY: clean clean: rm -rf public/ +.PHONY: public public: bash ./scripts/generate-tasks-and-bugs.sh - pandoc -s --metadata title='EuAndreh VPS' -c styles.css -o public/index.html README.md + pandoc -s --metadata title='VPS - EuAndreh' -c styles.css -o public/index.html README.md |