]> gitweb.michael.orlitzky.com - charm-bypass.git/blob - Makefile.am
Makefile.am: add dist/install rule for index.html
[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 tickettext.base64: src/tickettext.woff2
11 @BASE64@ -w0 $< > $@
12
13 # Build index.html by substituting the contents of a few (single
14 # line!) files into @PLACEHOLDERS@ within src/index.html.in. If you
15 # put tildes in src/day.svg this will probably break, so please don't
16 # do that.
17 index.html: src/index.html.in day.svg tickettext.base64
18 sed -e "s~@TICKETFONT@~$$(cat tickettext.base64)~" \
19 -e "s~@SVGDATA@~$$(cat day.svg)~" \
20 $< > $@
21
22 # If you really want to, we support installing index.html
23 # to (say) /usr/share/charm-bypass/index.html.
24 dist_pkgdata_DATA = index.html