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