]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
Makefile.am: teach "make" how to build our output file index.html
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Oct 2023 04:55:24 +0000 (00:55 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Oct 2023 12:53:46 +0000 (08:53 -0400)
Makefile.am

index dfeca2ad9211c06a8c057d93dd66715b827f27e3..fdb1e43d2b85aa5c5b2334be4c274f699beadb1c 100644 (file)
@@ -1 +1,20 @@
 EXTRA_DIST = doc src
+
+# Strip the XML prologue from an Inkscape document to produce
+# something that can be included directly into an HTML5 document.
+day.svg: src/day.svg
+       @XMLLINT@ -xpath "/*" $< > $@
+
+# Base64-encode a woff2 (web open font format 2.0) file. We use this
+# to embed fonts directly into the CSS that requires them.
+tickettext.base64: src/tickettext.woff2
+       @BASE64@ -w0 $< > $@
+
+# Build index.html by substituting the contents of a few (single
+# line!) files into @PLACEHOLDERS@ within src/index.html.in. If you
+# put tildes in src/day.svg this will probably break, so please don't
+# do that.
+index.html: src/index.html.in day.svg tickettext.base64
+       sed -e "s~@TICKETFONT@~$$(cat tickettext.base64)~" \
+            -e "s~@SVGDATA@~$$(cat day.svg)~" \
+            $< > $@