aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-01-22 19:27:06 -0300
committerEuAndreh <eu@euandre.org>2021-01-22 19:27:06 -0300
commitd68f80207e2fda373ef58c7daf6e12e61707b6ee (patch)
tree4734b9ebda71e310413950bec5a384853d4e59f2 /Makefile
parentUpdate shared files under build-aux (diff)
downloadtoph-d68f80207e2fda373ef58c7daf6e12e61707b6ee.tar.gz
toph-d68f80207e2fda373ef58c7daf6e12e61707b6ee.tar.xz
Makefile: Call README.sh and remove sh flags
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)