diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -5,11 +5,14 @@ all: back-template.html front-template.html card.min.js: card/card.js sed 's/\/\/.*$$//g' $< | tr '\n' ' ' | sed 's/\t//g' | sed 's/ */ /g' > $@ +card.min.css: card/card.css + cat $< | tr '\n' ' ' | sed 's/\t//g' | sed 's/ */ /g' > $@ + %.html: %.m4 m4 $< > $@ -back-template.html: card.min.js card/card.css -front-template.html: card.min.js card/card.css +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 |