aboutsummaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/common.mk b/common.mk
index d06ada1..0b18c7c 100644
--- a/common.mk
+++ b/common.mk
@@ -11,5 +11,9 @@ TRIM_WHITESPACE:=sed -E 's/^\s*(.*)\s+$$/\1/g'
%.min.css: %.css
cat $< | $(TO_SINGLE_LINE) | $(REMOVE_SLASH_STAR_COMMENTS) | $(REMOVE_TABS) | $(REMOVE_WHITESPACE) | $(TRIM_WHITESPACE) > $@
-%.html: %.m4
- m4 $< > $@
+%: %.m4
+ m4 -I.. $< > $@
+
+%.b64: %
+ base64 -w0 $< > $@
+