blob: 013acb6aed01b8c5307c49b4c45eebea25da2115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all: back-template.html front-template.html
.PRECIOUS: card.min.js card.min.css
.PHONY: clean release
include ../common.mk
back-template.html: card.min.js card.min.css template.m4
front-template.html: card.min.js card.min.css template.m4
clean:
$(RM) back-template.html front-template.html card.min.js card.min.css
release: back-template.html front-template.html
gh release create --latest -t "card template `git describe --tags`" `git describe --tags` $^
|