]> gitweb.michael.orlitzky.com - charm-bypass.git/blob - Makefile.am
Makefile.am: preserve the "ticketbg" id when minimizing the tableau
[charm-bypass.git] / Makefile.am
1 EXTRA_DIST = doc src
2
3 # List of element IDs that we use in the HTML document.
4 PRECIOUS_IDS = \
5 bus \
6 city \
7 citycopy \
8 codebg \
9 codetext \
10 clouds \
11 cloudscopy \
12 train \
13 tram \
14 trees \
15 treescopy \
16 serviceid \
17 servicename \
18 sky \
19 ticket \
20 ticketbg \
21 ticketdate \
22 tickettime
23
24 # Optimize our SVG once using XSL, to catch a few things
25 # that "scour" misses.
26 tableau.min.svg: tableau.svg svgclean.xsl
27 @XSLTPROC@ svgclean.xsl $< > $@
28
29 # Optimize our SVG again, and remove its XML prologue so that it can
30 # be included directly into the HTML document.
31 tableau.min.min.svg: tableau.min.svg
32 @SCOUR@ --protect-ids-list=$$(echo $(PRECIOUS_IDS) | tr ' ' ',') \
33 --enable-id-stripping \
34 --enable-comment-stripping \
35 --remove-descriptive-elements \
36 --no-renderer-workaround \
37 --strip-xml-prolog \
38 --no-line-breaks \
39 --error-on-flowtext \
40 $< > $@
41
42 # Use FontForge to convert the sfd source files to woff2.
43 .sfd.woff2:
44 @FONTFORGE@ -script sfd2woff.ff $<
45
46 # Base64-encode a woff2 (web open font format 2.0) file. We use this
47 # to embed fonts directly into the CSS that requires them.
48 .woff2.base64:
49 @BASE64@ -w0 $< > $@
50
51 # Build index.html by substituting the contents of a few (single
52 # line!) files into @PLACEHOLDERS@ within index.html.in. If you put
53 # tildes in tableau.svg this will probably break, so please don't do
54 # that.
55 index.html: index.html.in tableau.min.min.svg CharmBypass-Regular.base64 CharmBypass-Bold.base64
56 sed -e "s~@CBPREGULAR@~$$(cat CharmBypass-Regular.base64)~" \
57 -e "s~@CBPBOLD@~$$(cat CharmBypass-Bold.base64)~" \
58 -e "s~@SVGDATA@~$$(cat tableau.min.min.svg)~" \
59 $< > $@
60
61 # If you really want to, we support installing index.html
62 # to (say) /usr/share/charm-bypass/index.html.
63 dist_pkgdata_DATA = index.html
64
65 # Automake doesn't understand our wacky build process so we have to
66 # tell it which files are produced by running "make"
67 CLEANFILES = $(dist_pkgdata_DATA) \
68 CharmBypass-Regular.base64 \
69 CharmBypass-Bold.base64 \
70 tableau.min.svg \
71 tableau.min.min.svg