diff options
| -rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..170d46c4 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: check +check: + bash scripts/assert-shellcheck.sh + bash scripts/assert-todos.sh + +.PHONY: clean +clean: + rm -rf public/ + +.PHONY: public +public: + bash ./scripts/generate-tasks-and-bugs.sh + pandoc -s --metadata title='dotfiles - EuAndreh' -c styles.css -o public/index.html README.md |
