]> gitweb.michael.orlitzky.com - charm-bypass.git/blob - Makefile.am
Makefile.am,src: replace the existing ticket font with two new ones
[charm-bypass.git] / Makefile.am
1 EXTRA_DIST = doc src
2
3 # Strip the XML prologue from an Inkscape document to produce
4 # something that can be included directly into an HTML5 document.
5 day.svg: src/day.svg
6 @XMLLINT@ -xpath "/*" $< > $@
7
8 # Base64-encode a woff2 (web open font format 2.0) file. We use this
9 # to embed fonts directly into the CSS that requires them.
10 CharmBypass-Regular.base64: src/CharmBypass-Regular.woff2
11 @BASE64@ -w0 $< > $@
12 CharmBypass-Bold.base64: src/CharmBypass-Bold.woff2
13 @BASE64@ -w0 $< > $@
14
15 # Build index.html by substituting the contents of a few (single
16 # line!) files into @PLACEHOLDERS@ within src/index.html.in. If you
17 # put tildes in src/day.svg this will probably break, so please don't
18 # do that.
19 index.html: src/index.html.in day.svg CharmBypass-Regular.base64 CharmBypass-Bold.base64
20 sed -e "s~@CBPREGULAR@~$$(cat CharmBypass-Regular.base64)~" \
21 -e "s~@CBPBOLD@~$$(cat CharmBypass-Bold.base64)~" \
22 -e "s~@SVGDATA@~$$(cat day.svg)~" \
23 $< > $@
24
25 # If you really want to, we support installing index.html
26 # to (say) /usr/share/charm-bypass/index.html.
27 dist_pkgdata_DATA = index.html
28
29 # Automake doesn't understand our wacky build process so we have to
30 # tell it which files are produced by running "make"
31 CLEANFILES = $(dist_pkgdata_DATA) CharmBypass-Regular.base64 CharmBypass-Bold.base64 day.svg