blob: 457738106f0c5584fa1a8a69ce471f1ed71afa22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 -C yomichan yomichan-chrome-patched.zip
anki-card-template/back-template.html anki-card-template/front-template.html:
make -C anki-card-template
yomichan-user/yomichan-user.css yomichan-user/yomichan-user.js:
make -C yomichan-user
release: $(ARTIFACTS)
gh release create --latest -t "`git describe --tags`" `git describe --tags` $^
|