From 5f85582e6e76042e253b51d7c943cb1533f4e3b4 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 29 Jan 2023 17:48:24 +0100 Subject: update makefiles --- makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..8f834fb --- /dev/null +++ b/makefile @@ -0,0 +1,19 @@ +ARTIFACTS := yomichan/yomichan-chrome-patched.zip \ + yomichan-user/yomichan-user.css \ + yomichan-user/yomichan-user.js \ + anki-card-template/back-template.html \ + anki-card-template/front-template.html + +all: $(ARTIFACTS) + +yomichan/yomichan-chrome-patched.zip: + make -BC yomichan yomichan-chrome-patched.zip + +anki-card-template/back-template.html anki-card-template/front-template.html: + make -BC anki-card-template + +yomichan-user/yomichan-user.css yomichan-user/yomichan-user.js: + make -BC yomichan-user + +release: $(ARTIFACTS) + gh release create --latest -t "`git describe --tags`" `git describe --tags` $^ -- cgit v1.2.3