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