diff options
author | EuAndreh <eu@euandre.org> | 2021-02-08 21:56:14 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-08 21:56:14 -0300 |
commit | ec067c76d5091b33bb6db76ffd046d5545c407f9 (patch) | |
tree | 730d61a523c7a317bc090428cb72da6099e438d4 /Makefile | |
parent | euandreh.scm: Add long-description (diff) | |
download | package-repository-ec067c76d5091b33bb6db76ffd046d5545c407f9.tar.gz package-repository-ec067c76d5091b33bb6db76ffd046d5545c407f9.tar.xz |
Add basic Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
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 |