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