aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 10f1c8e..7c786cc 100644
--- a/Makefile
+++ b/Makefile
@@ -24,12 +24,16 @@ check:
dev-check: check
clean:
- rm -rf public/ dependencies.svg
+ rm -rf public/ dependencies.svg paku.html
dependencies.svg: dependencies.dot
dot dependencies.dot -Tsvg > dependencies.svg
-public: README.md TODOs.md dependencies.svg
+paku.html: paku.json
+ sh scripts/paku -l
+
+public: README.md TODOs.md dependencies.svg paku.html
sh aux/workflow/public.sh "EuAndreh's package repository" $(NAME) $(MAILING_LIST)
- cp EuAndreh.key public/
- cp dependencies.svg public/
+ for f in EuAndreh.key dependencies.svg paku.html; do \
+ cp $$f public/; \
+ done