aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..cc78ca5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+check:
+ sh aux/assert-shellcheck.sh
+ sh aux/assert-nixfmt.sh
+ sh aux/workflow/assert-todos.sh
+
+clean:
+ rm -rf public/
+
+NAME_UC = EuAndreh package repository
+NAME = euandreh-package-repository
+MAILING_LIST = public-inbox
+public: README.md TODOs.md
+ sh aux/workflow/TODOs.sh '$(NAME_UC)' $(NAME) $(MAILING_LIST)
+ sh aux/workflow/README.sh '$(NAME_UC)' $(NAME)
+
+.PHONY: clean check