]> gitweb.michael.orlitzky.com - charm-bypass.git/blob - Makefile.am
Makefile.am,configure.ac,.gitignore: update for day.svg rename
[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.min.svg: 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 .woff2.base64:
37 @BASE64@ -w0 $< > $@
38
39 # Build index.html by substituting the contents of a few (single
40 # line!) files into @PLACEHOLDERS@ within index.html.in. If you
41 # put tildes in day.svg this will probably break, so please don't
42 # do that.
43 index.html: index.html.in day.min.svg CharmBypass-Regular.base64 CharmBypass-Bold.base64
44 sed -e "s~@CBPREGULAR@~$$(cat CharmBypass-Regular.base64)~" \
45 -e "s~@CBPBOLD@~$$(cat CharmBypass-Bold.base64)~" \
46 -e "s~@SVGDATA@~$$(cat day.min.svg)~" \
47 $< > $@
48
49 # If you really want to, we support installing index.html
50 # to (say) /usr/share/charm-bypass/index.html.
51 dist_pkgdata_DATA = index.html
52
53 # Automake doesn't understand our wacky build process so we have to
54 # tell it which files are produced by running "make"
55 CLEANFILES = $(dist_pkgdata_DATA) CharmBypass-Regular.base64 CharmBypass-Bold.base64 day.min.svg