blob: 1272a216f3f53ffe783f360bb17a1a8881644076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
## This file is part of dvisvgm
## Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de>
##
## Process this file with automake.
bin_PROGRAMS = dvisvgm
noinst_LTLIBRARIES = libdvisvgm.la
SUBDIRS = fonts optimizer ttf
dvisvgm_SOURCES = \
CommandLine.hpp \
dvisvgm.cpp
include ../libs/defs.am
dvisvgm_LDADD = \
$(noinst_LTLIBRARIES) \
../libs/clipper/libclipper.a \
../libs/md5/libmd5.a \
$(FREETYPE_LIBS) \
$(POTRACE_LIBS) \
$(XXHASH_LIBS) \
$(ZLIB_LIBS)
if ENABLE_WOFF
SUBDIRS += ttf
dvisvgm_LDADD += \
$(WOFF2_LIBS) \
$(BROTLI_LIBS)
endif
dvisvgm_DEPENDENCIES = $(noinst_LTLIBRARIES)
if TEXLIVE_BUILD
dvisvgm_DEPENDENCIES += $(KPATHSEA_DEPEND) $(ZLIB_DEPEND) $(FREETYPE2_DEPEND)
dvisvgm_DEPENDENCIES += $(POTRACE_DEPEND)
endif
libdvisvgm_la_SOURCES = \
AGLTable.hpp \
BasicDVIReader.hpp BasicDVIReader.cpp \
Bezier.hpp Bezier.cpp \
BgColorSpecialHandler.hpp BgColorSpecialHandler.cpp \
Bitmap.hpp Bitmap.cpp \
BoundingBox.hpp BoundingBox.cpp \
Calculator.hpp Calculator.cpp \
Character.hpp \
CharMapID.hpp CharMapID.cpp \
CLCommandLine.hpp CLCommandLine.cpp \
CMap.hpp CMap.cpp \
CMapManager.hpp CMapManager.cpp \
CMapReader.hpp CMapReader.cpp \
CLOption.hpp \
Color.hpp Color.cpp \
ColorSpecialHandler.hpp ColorSpecialHandler.cpp \
CommandLine.hpp \
Directory.hpp Directory.cpp \
DVIActions.hpp \
DLLoader.hpp DLLoader.cpp \
DVIReader.hpp DVIReader.cpp \
DvisvgmSpecialHandler.hpp DvisvgmSpecialHandler.cpp \
DVIToSVG.hpp DVIToSVG.cpp \
DVIToSVGActions.hpp DVIToSVGActions.cpp \
EllipticalArc.hpp EllipticalArc.cpp \
EmSpecialHandler.hpp EmSpecialHandler.cpp \
EncFile.hpp EncFile.cpp \
EPSFile.hpp EPSFile.cpp \
EPSToSVG.hpp \
FileFinder.hpp FileFinder.cpp \
FilePath.hpp FilePath.cpp \
FileSystem.hpp FileSystem.cpp \
FixWord.hpp \
Font.hpp Font.cpp \
FontCache.hpp FontCache.cpp \
FontEncoding.hpp FontEncoding.cpp \
FontEngine.hpp FontEngine.cpp \
FontManager.hpp FontManager.cpp \
FontMap.hpp FontMap.cpp \
FontMetrics.hpp FontMetrics.cpp \
FontStyle.hpp \
FontWriter.hpp FontWriter.cpp \
GFGlyphTracer.hpp GFGlyphTracer.cpp \
GFReader.hpp GFReader.cpp \
GFTracer.hpp GFTracer.cpp \
Ghostscript.hpp Ghostscript.cpp \
Glyph.hpp \
GlyphTracerMessages.hpp \
GraphicsPath.hpp \
GraphicsPathParser.hpp \
HashFunction.hpp HashFunction.cpp \
HtmlSpecialHandler.hpp HtmlSpecialHandler.cpp \
HyperlinkManager.hpp HyperlinkManager.cpp \
ImageToSVG.hpp ImageToSVG.cpp \
InputBuffer.hpp InputBuffer.cpp \
InputReader.hpp InputReader.cpp \
JFM.hpp JFM.cpp \
Length.hpp Length.cpp \
macros.hpp \
MapLine.hpp MapLine.cpp \
Matrix.hpp Matrix.cpp \
MD5HashFunction.hpp \
Message.hpp Message.cpp \
MessageException.hpp \
MetafontWrapper.hpp MetafontWrapper.cpp \
NoPsSpecialHandler.hpp NoPsSpecialHandler.cpp \
NumericRanges.hpp \
Opacity.hpp Opacity.cpp \
PageRanges.hpp PageRanges.cpp \
PageSize.hpp PageSize.cpp \
Pair.hpp \
PapersizeSpecialHandler.hpp PapersizeSpecialHandler.cpp \
PathClipper.hpp PathClipper.cpp \
PDFHandler.hpp PDFHandler.cpp \
PDFParser.hpp PDFParser.cpp \
PdfSpecialHandler.hpp PdfSpecialHandler.cpp \
PDFToSVG.hpp PDFToSVG.cpp \
PreScanDVIReader.hpp PreScanDVIReader.cpp \
Process.hpp Process.cpp \
psdefs.cpp \
PSFilter.hpp \
PSInterpreter.hpp PSInterpreter.cpp \
PSPattern.hpp PSPattern.cpp \
PSPreviewFilter.hpp PSPreviewFilter.cpp \
PsSpecialHandler.hpp PsSpecialHandler.cpp \
RangeMap.hpp RangeMap.cpp \
ShadingPatch.hpp ShadingPatch.cpp \
SignalHandler.hpp SignalHandler.cpp \
SourceInput.hpp SourceInput.cpp \
SpecialActions.hpp \
SpecialHandler.hpp \
SpecialManager.hpp SpecialManager.cpp \
StreamReader.hpp StreamReader.cpp \
StreamWriter.hpp StreamWriter.cpp \
Subfont.hpp Subfont.cpp \
SVGCharHandler.hpp SVGCharHandler.cpp \
SVGCharHandlerFactory.hpp SVGCharHandlerFactory.cpp \
SVGCharPathHandler.hpp SVGCharPathHandler.cpp \
SVGCharTspanTextHandler.hpp SVGCharTspanTextHandler.cpp \
SVGElement.hpp SVGElement.cpp \
SVGOutput.hpp SVGOutput.cpp \
SVGSingleCharTextHandler.hpp SVGSingleCharTextHandler.cpp \
SVGTree.hpp SVGTree.cpp \
System.hpp System.cpp \
TensorProductPatch.hpp TensorProductPatch.cpp \
Terminal.hpp Terminal.cpp \
TFM.hpp TFM.cpp \
ToUnicodeMap.hpp ToUnicodeMap.cpp \
TpicSpecialHandler.hpp TpicSpecialHandler.cpp \
TriangularPatch.hpp TriangularPatch.cpp \
Unicode.hpp Unicode.cpp \
utility.hpp utility.cpp \
VectorIterator.hpp \
VectorStream.hpp \
VFActions.hpp \
VFReader.hpp VFReader.cpp \
windows.hpp \
XMLDocument.hpp XMLDocument.cpp \
XMLNode.hpp XMLNode.cpp \
XMLParser.hpp XMLParser.cpp \
XMLString.hpp XMLString.cpp \
XXHashFunction.hpp \
ZLibOutputStream.hpp
libdvisvgm_la_LIBADD = fonts/libbase14fonts.la optimizer/liboptimizer.la
if ENABLE_WOFF
libdvisvgm_la_LIBADD += ttf/libttf.la
endif
EXTRA_DIST = options.xml options.dtd iapi.h ierrors.h MiKTeXCom.hpp MiKTeXCom.cpp
if !TEXLIVE_BUILD
WARNING_CFLAGS = -Wall
WARNING_CXXFLAGS = -Wall -Wnon-virtual-dtor
endif
AM_CFLAGS = $(WARNING_CFLAGS) \
$(ZLIB_CFLAGS) \
$(CODE_COVERAGE_CFLAGS)
AM_CXXFLAGS = $(WARNING_CXXFLAGS) \
-I$(dvisvgm_srcdir)/libs/clipper \
-I$(dvisvgm_srcdir)/libs/variant/include \
$(KPSE_CFLAGS) \
$(FREETYPE_CFLAGS) \
$(ZLIB_CFLAGS) \
$(CODE_COVERAGE_CFLAGS)
AM_CXXFLAGS += \
$(POTRACE_CFLAGS) \
$(XXHASH_CFLAGS)
AM_LDFLAGS = \
$(KPSE_LIBS) \
$(CODE_COVERAGE_LDFLAGS)
if ENABLE_WOFF
AM_CXXFLAGS += $(TTFAUTOHINT_CFLAGS)
AM_CXXFLAGS += \
$(BROTLI_CFLAGS) \
$(WOFF2_CFLAGS)
AM_LDFLAGS += $(TTFAUTOHINT_LIBS)
endif
AM_CXXFLAGS += -I$(dvisvgm_srcdir)/libs/md5
if !TEXLIVE_BUILD
# the command-line parser class is generated from options.xml by opt2cpp
$(srcdir)/CommandLine.hpp: options.xml
rm -f $@
python $(srcdir)/opt2cpp.py $< >$@
# Create a C string definition containing the PostScript routines psdefs.ps needed by class PSInterpreter
$(srcdir)/psdefs.cpp: psdefs.ps
if test -f $<; then \
ps2c PSInterpreter::PSDEFS $< >$@; \
fi
psdefs.ps: ;
endif !TEXLIVE_BUILD
CLEANFILES = *.gcda *.gcno
if TEXLIVE_BUILD
# Rebuild libkpathsea:
@KPATHSEA_RULE@
# Rebuild libfreetype:
@FREETYPE2_RULE@
# Rebuild libz:
@ZLIB_RULE@
# Rebuild potrace:
@POTRACE_RULE@
endif TEXLIVE_BUILD
|