summaryrefslogtreecommitdiff
path: root/src/Makefile.sources
blob: 0e7b54b58b7091e567b223c05eca02d360eda8fb (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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# Makefile.sources
#
# This file is the canonical location listing all the source files used
# to build the cairo library.  Every source file is categorized as one of:
#
#   * public header file
#   * private header file (must end in -private.h except for cairoint.h)
#   * source code file
#
# Every source file should be specified exactly once, grouped with the
# feature that uses the source file.  If more than one feature use the
# file (like pdf_operators or font_subset files), the files should be
# appended to to the base cairo files, and the code inside them
# enabled/disabled using C preprocessor macros defined in cairoint.h.
# See how pdf_operators or font_subset are handled.
#
# The sources are picked up according to the configured features
# by the generated file Makefile.am.features or Makefile.win32.features.
#
# These are a few special source files.  Those are not included in this
# file to not confuse build systems.  Each build system must handle them
# separately.  These files include:
#
#   * cairo-features.h:
#     This file is generated by configure and includes macros signifying
#     which features are enabled.  This file should be installed like
#     other public headers, but should NOT be distributed in the cairo
#     distribution.
#
#   * cairo-version.h:
#     This is a dummy header file used during the build, but it should
#     NOT be installed.  Its sole purpose is to make sure changes in the
#     cairo version do not trigger a full rebuild of the library, but
#     just the functions actually using the version information.
#
#   * $(top_srcdir)/cairo-version.h:
#     This is the real file holding the cairo version number.  This file
#     should be installed like other public headers.  This is used during
#     the build by cairo-version.c only.
#
#   * cairo-supported-features.h:
#     This file is generated by configure and includes macros signifying
#     all supported features.  This is used by gtk-doc to generate
#     documentation for all those macros, enabled or not.
#     This file is NOT used during the build of the library and should
#     NOT be installed or distributed.
#
# Please follow the strict syntax of this file, including keeping file
# lists sorted.
#

cairo_headers = cairo.h cairo-deprecated.h
cairo_private = \
	cairoint.h \
	cairo-analysis-surface-private.h \
	cairo-arc-private.h \
	cairo-atomic-private.h \
	cairo-cache-private.h \
	cairo-clip-private.h \
	cairo-combsort-private.h \
	cairo-compiler-private.h \
	cairo-fixed-private.h \
	cairo-fixed-type-private.h \
	cairo-freelist-private.h \
	cairo-gstate-private.h \
	cairo-hash-private.h \
	cairo-image-info-private.h \
	cairo-list-private.h \
	cairo-malloc-private.h \
	cairo-meta-surface-private.h \
	cairo-mutex-impl-private.h \
	cairo-mutex-list-private.h \
	cairo-mutex-private.h \
	cairo-mutex-type-private.h \
	cairo-output-stream-private.h \
	cairo-paginated-private.h \
	cairo-paginated-surface-private.h \
	cairo-path-fixed-private.h \
	cairo-path-private.h \
	cairo-private.h \
	cairo-reference-count-private.h \
	cairo-region-private.h \
	cairo-rtree-private.h \
	cairo-scaled-font-private.h \
	cairo-spans-private.h \
	cairo-surface-fallback-private.h \
	cairo-surface-private.h \
	cairo-surface-clipper-private.h \
	cairo-surface-wrapper-private.h \
	cairo-types-private.h \
	cairo-user-font-private.h \
	cairo-wideint-private.h \
	cairo-wideint-type-private.h \
	$(NULL)
cairo_sources = \
	cairo-analysis-surface.c \
	cairo-arc.c \
	cairo-array.c \
	cairo-atomic.c \
	cairo-base85-stream.c \
	cairo-bentley-ottmann.c \
	cairo-bentley-ottmann-rectilinear.c \
	cairo.c \
	cairo-cache.c \
	cairo-clip.c \
	cairo-color.c \
	cairo-debug.c \
	cairo-fixed.c \
	cairo-font-face.c \
	cairo-font-face-twin.c \
	cairo-font-face-twin-data.c \
	cairo-font-options.c \
	cairo-freelist.c \
	cairo-gstate.c \
	cairo-hash.c \
	cairo-hull.c \
	cairo-image-info.c \
	cairo-image-surface.c \
	cairo-lzw.c \
	cairo-matrix.c \
	cairo-meta-surface.c \
	cairo-misc.c \
	cairo-mutex.c \
	cairo-output-stream.c \
	cairo-paginated-surface.c \
	cairo-path-bounds.c \
	cairo-path.c \
	cairo-path-fill.c \
	cairo-path-fixed.c \
	cairo-path-in-fill.c \
	cairo-path-stroke.c \
	cairo-pattern.c \
	cairo-pen.c \
	cairo-polygon.c \
	cairo-rectangle.c \
	cairo-region.c \
	cairo-rtree.c \
	cairo-scaled-font.c \
	cairo-slope.c \
	cairo-spans.c \
	cairo-spline.c \
	cairo-stroke-style.c \
	cairo-surface.c \
	cairo-surface-fallback.c \
	cairo-surface-clipper.c \
	cairo-surface-wrapper.c \
	cairo-tor-scan-converter.c \
	cairo-system.c \
	cairo-traps.c \
	cairo-toy-font-face.c \
	cairo-unicode.c \
	cairo-user-font.c \
	cairo-version.c \
	cairo-wideint.c \
	$(NULL)

_cairo_font_subset_private = \
	cairo-scaled-font-subsets-private.h \
	cairo-truetype-subset-private.h \
	cairo-type1-private.h \
        cairo-type3-glyph-surface-private.h \
	$(NULL)
_cairo_font_subset_sources = \
	cairo-cff-subset.c \
	cairo-scaled-font-subsets.c \
	cairo-truetype-subset.c \
	cairo-type1-fallback.c \
	cairo-type1-subset.c \
        cairo-type3-glyph-surface.c \
	$(NULL)
cairo_private += $(_cairo_font_subset_private)
cairo_sources += $(_cairo_font_subset_sources)

cairo_glx_sources =
cairo_egl_sources =
cairo_eagle_sources =

_cairo_pdf_operators_private = cairo-pdf-operators-private.h
_cairo_pdf_operators_sources = cairo-pdf-operators.c
cairo_private += $(_cairo_pdf_operators_private)
cairo_sources += $(_cairo_pdf_operators_sources)

cairo_png_sources = cairo-png.c

cairo_ps_headers = cairo-ps.h
cairo_ps_private = cairo-ps-surface-private.h
cairo_ps_sources = cairo-ps-surface.c

cairo_pdf_headers = cairo-pdf.h
cairo_pdf_private = cairo-pdf-surface-private.h
cairo_pdf_sources = cairo-pdf-surface.c cairo-deflate-stream.c

cairo_svg_headers = cairo-svg.h
cairo_svg_private = cairo-svg-surface-private.h
cairo_svg_sources = cairo-svg-surface.c

cairo_ft_headers = cairo-ft.h
cairo_ft_private = cairo-ft-private.h
cairo_ft_sources = cairo-ft-font.c

# These are private, even though they look like public headers
cairo_test_surfaces_private = \
	test-fallback-surface.h \
	test-fallback16-surface.h \
	test-null-surface.h \
	test-paginated-surface.h \
	test-wrapping-surface.h \
	$(NULL)
cairo_test_surfaces_sources = \
	test-fallback-surface.c \
	test-fallback16-surface.c \
	test-null-surface.c \
	test-paginated-surface.c \
	test-wrapping-surface.c \
	$(NULL)

cairo_xlib_headers = cairo-xlib.h
cairo_xlib_private = \
	cairo-xlib-private.h \
	cairo-xlib-surface-private.h \
	cairo-xlib-xrender-private.h \
	$(NULL)
cairo_xlib_sources = \
	cairo-xlib-display.c \
	cairo-xlib-screen.c \
	cairo-xlib-surface.c \
	cairo-xlib-visual.c \
	$(NULL)

cairo_xlib_xrender_headers = cairo-xlib-xrender.h

# XXX split xcb-xrender.  or better yet, merge it into xcb.  xcb is so recent
# that it's hard to imagine having xcb but not render.
cairo_xcb_headers = cairo-xcb.h cairo-xcb-xrender.h
cairo_xcb_sources = cairo-xcb-surface.c

cairo_qt_headers = cairo-qt.h
cairo_qt_sources = cairo-qt-surface.cpp

cairo_quartz_headers = cairo-quartz.h
cairo_quartz_private = cairo-quartz-private.h
cairo_quartz_sources = cairo-quartz-surface.c

cairo_quartz_image_headers = cairo-quartz-image.h
cairo_quartz_image_sources = cairo-quartz-image-surface.c

cairo_quartz_font_sources = cairo-quartz-font.c

cairo_win32_headers = cairo-win32.h
cairo_win32_private = cairo-win32-private.h
cairo_win32_sources = cairo-win32-surface.c cairo-win32-printing-surface.c

cairo_win32_font_sources = cairo-win32-font.c

cairo_os2_headers = cairo-os2.h
cairo_os2_private = cairo-os2-private.h
cairo_os2_sources = cairo-os2-surface.c

# automake is stupid enough to always use c++ linker if we enable the
# following lines, even if beos surface is not enabled.  Disable it for now.
cairo_beos_headers = cairo-beos.h
#cairo_beos_sources = cairo-beos-surface.cpp

cairo_gl_headers = cairo-gl.h
cairo_gl_private = cairo-gl-private.h
cairo_gl_sources = cairo-gl-surface.c cairo-gl-glyphs.c
cairo_glx_sources += cairo-glx-context.c
cairo_eagle_sources += cairo-eagle-context.c

cairo_glitz_headers = cairo-glitz.h
cairo_glitz_private = cairo-glitz-private.h
cairo_glitz_sources = cairo-glitz-surface.c

cairo_directfb_headers = cairo-directfb.h
cairo_directfb_sources = cairo-directfb-surface.c

cairo_drm_headers = cairo-drm.h
cairo_drm_private = drm/cairo-drm-private.h \
		    drm/cairo-drm-intel-private.h \
		    drm/cairo-drm-radeon-private.h
cairo_drm_sources = drm/cairo-drm.c \
		    drm/cairo-drm-bo.c \
		    drm/cairo-drm-surface.c \
		    drm/cairo-drm-intel.c \
		    drm/cairo-drm-intel-surface.c \
		    drm/cairo-drm-radeon.c \
		    drm/cairo-drm-radeon-surface.c
cairo_gallium_sources = drm/cairo-drm-gallium-surface.c

cairo_script_headers = cairo-script.h
cairo_script_sources = cairo-script-surface.c

cairo_vg_headers = cairo-vg.h
cairo_vg_sources = cairo-vg-surface.c