]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
Makefile.am: base64-encode and substitute the favicon into index.html
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 3 Nov 2023 14:32:13 +0000 (10:32 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 3 Nov 2023 14:32:13 +0000 (10:32 -0400)
Makefile.am

index 2ddde991e5f20a2012c5f7379f9b7c67e50883fa..62f5bbfc7dd5a8ea6b14dc2830b8253db1f6de68 100644 (file)
@@ -32,6 +32,9 @@ SCOUR = @SCOUR@ --enable-id-stripping \
                 --no-line-breaks \
                 --error-on-flowtext
 
+favicon.min.svg: favicon.svg
+       $(SCOUR) $< > $@
+
 # Optimize our SVG once using XSL, to catch a few things
 # that "scour" misses.
 tableau.min.svg: tableau.svg svgclean.xsl
@@ -53,13 +56,19 @@ tableau.min.min.svg: tableau.min.svg
 .woff2.base64:
        @BASE64@ -w0 $< > $@
 
+# Same with the favicon SVG.
+.svg.base64:
+       @BASE64@ -w0 $< > $@
+
 # Build index.html by substituting the contents of a few (single
 # line!) files into @PLACEHOLDERS@ within index.html.in. If you put
 # tildes in tableau.svg this will probably break, so please don't do
 # that.
-index.html: index.html.in tableau.min.min.svg CharmBypass-Regular.base64 CharmBypass-Bold.base64
+index.html: index.html.in tableau.min.min.svg CharmBypass-Regular.base64 CharmBypass-Bold.base64 favicon.base64
+
        sed -e "s~@CBPREGULAR@~$$(cat CharmBypass-Regular.base64)~" \
             -e "s~@CBPBOLD@~$$(cat CharmBypass-Bold.base64)~" \
+            -e "s~@FAVICON@~$$(cat favicon.base64)~" \
             -e "s~@SVGDATA@~$$(cat tableau.min.min.svg)~" \
             $< > $@
 
@@ -72,5 +81,6 @@ dist_pkgdata_DATA = index.html
 CLEANFILES = $(dist_pkgdata_DATA) \
              CharmBypass-Regular.base64 \
              CharmBypass-Bold.base64 \
+             favicon.min.svg \
              tableau.min.svg \
              tableau.min.min.svg