diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-12-29 12:30:30 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-12-29 12:30:30 +0100 |
commit | f47d3633c6a54f90acc92d7ccddbf508bf23cc75 (patch) | |
tree | e06b2e270871690ef931df2e738a0151afe7069c /anki-card-template/makefile | |
parent | 2a03e5b1ea0a47ed1ba4d9f7c270588c1b01543d (diff) |
typo
Diffstat (limited to 'anki-card-template/makefile')
-rw-r--r-- | anki-card-template/makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/anki-card-template/makefile b/anki-card-template/makefile new file mode 100644 index 0000000..deb4c29 --- /dev/null +++ b/anki-card-template/makefile @@ -0,0 +1,12 @@ +all: back-template.html front-template.html + +.PRECIOUS: card.min.js card.min.css +.PHONY: clean + +include ../common.mk + +back-template.html: card.min.js card.min.css +front-template.html: card.min.js card.min.css + +clean: + $(RM) back-template.html front-template.html card.min.js card.min.css |