aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index a74d029..728b71f 100644
--- a/Makefile
+++ b/Makefile
@@ -2,15 +2,16 @@
.PHONY: check
check:
- sh -eux build-aux/assert-shellcheck.sh
- sh -eux build-aux/assert-todos.sh
- sh -eux build-aux/assert-terraform.sh
+ sh build-aux/assert-shellcheck.sh
+ sh build-aux/assert-todos.sh
+ sh build-aux/assert-terraform.sh
.PHONY: clean
clean:
rm -rf public/
-.PHONY: public
-public:
- sh -eu build-aux/workflow/TODOs.sh VPS vps public-inbox
- pandoc -s --metadata title='VPS - EuAndreh' -o public/index.html README.md
+NAME_UC = VPS
+NAME = vps
+public: README.md TODOs.md
+ sh build-aux/workflow/TODOs.sh $(NAME_UC) $(NAME) public-inbox
+ sh build-aux/workflow/README.sh $(NAME_UC) $(NAME)