diff options
Diffstat (limited to 'meta/recipes-sato/webkit/files/GNUmakefile.am')
-rw-r--r-- | meta/recipes-sato/webkit/files/GNUmakefile.am | 856 |
1 files changed, 856 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/files/GNUmakefile.am b/meta/recipes-sato/webkit/files/GNUmakefile.am new file mode 100644 index 0000000000..39817f1dd5 --- /dev/null +++ b/meta/recipes-sato/webkit/files/GNUmakefile.am | |||
@@ -0,0 +1,856 @@ | |||
1 | # Top-level Makefile rule for automake | ||
2 | # | ||
3 | # Variable conventions: | ||
4 | # | ||
5 | # _h_api = API headers that will be installed and included in the distribution | ||
6 | # _cppflags = flags that will be passed to the C/CXX Preprocessor | ||
7 | # _sources = sources that will be compiled and included in the distribution | ||
8 | # _built_sources = files that will be autogenerated by the build system and | ||
9 | # will be part of the _SOURCES primary | ||
10 | # _built_nosources = files that are autogenerated but are not part of the | ||
11 | # _SOURCES primary | ||
12 | # _cleanfiles = files that will be removed by the clean target | ||
13 | # | ||
14 | # Sources, headers, flags, etc... should be added to the respective variables | ||
15 | # with the above suffix, e.g, webcore-specific sources should go to | ||
16 | # webcore_sources, gtk port API and WebCoreSupport parts to webkitgtk_sources, | ||
17 | # etc... The only exceptions are the global variables. See Global Variables | ||
18 | # below. | ||
19 | # | ||
20 | # Global Variables | ||
21 | # | ||
22 | # global_cppflags = CPPFLAGS that apply to JSC, WebCore, and to any | ||
23 | # specific port | ||
24 | # global_cflags = CFLAGS that apply to JSC, WebCore, and to | ||
25 | # any specific port | ||
26 | # global_cxxflags = CXXFLAGS that apply to JSC, WebCore, and to any | ||
27 | # specific port | ||
28 | |||
29 | srcdir = @srcdir@ | ||
30 | VPATH = @srcdir@ | ||
31 | |||
32 | DISTCHECK_CONFIGURE_FLAGS = \ | ||
33 | --enable-introspection \ | ||
34 | --enable-gtk-doc | ||
35 | |||
36 | # Directory for autogenerated sources | ||
37 | GENSOURCES := $(top_builddir)/DerivedSources | ||
38 | GENSOURCESWEBKITDOM := $(top_builddir)/DerivedSources/webkit | ||
39 | GENPROGRAMS := $(top_builddir)/Programs | ||
40 | |||
41 | # Script for creating hash tables | ||
42 | CREATE_HASH_TABLE = $(srcdir)/JavaScriptCore/create_hash_table | ||
43 | |||
44 | # Script for creating regexp tables | ||
45 | CREATE_REGEXP_TABLES = $(srcdir)/JavaScriptCore/create_regex_tables | ||
46 | |||
47 | # Programs to run the WebKitGtk unit tests | ||
48 | GTESTER = gtester | ||
49 | GTESTER_REPORT = gtester-report | ||
50 | |||
51 | # Libraries and support components | ||
52 | bin_PROGRAMS := | ||
53 | noinst_PROGRAMS := | ||
54 | noinst_HEADERS := | ||
55 | noinst_LTLIBRARIES := | ||
56 | lib_LTLIBRARIES := | ||
57 | IDL_BINDINGS := | ||
58 | TEST_PROGS := | ||
59 | POFILES := | ||
60 | MOFILES := | ||
61 | javascriptcore_h_api := | ||
62 | javascriptcore_cppflags:= | ||
63 | javascriptcore_sources := | ||
64 | javascriptcore_built_sources := | ||
65 | javascriptcore_built_nosources := | ||
66 | javascriptcore_dist := | ||
67 | webcore_cppflags := | ||
68 | webcore_sources := | ||
69 | webcore_libadd := | ||
70 | webcore_built_sources := | ||
71 | webcore_built_nosources := | ||
72 | webcore_dist := | ||
73 | webcoregtk_cppflags := | ||
74 | webcoregtk_sources := | ||
75 | IDL_BINDINGS_GDOM := | ||
76 | GDOM_AUTO_CLASSES := | ||
77 | GDOM_FIXED_CLASSES := | ||
78 | GDOM_CLASSES := | ||
79 | GDOM_HEADERS_BUILT := | ||
80 | GDOM_HEADERS_FIXED := | ||
81 | libgdom_h_api := | ||
82 | libgdom_cleanfiles := | ||
83 | webkitgtk_h_api := | ||
84 | webkitgtk_sources := | ||
85 | webkitgtk_cppflags := | ||
86 | webkitgtk_built_sources := | ||
87 | webkitgtk_built_nosources := | ||
88 | webkitgtk_cleanfiles := | ||
89 | global_cppflags := | ||
90 | global_cflags := | ||
91 | global_cxxflags := | ||
92 | corekit_cflags := | ||
93 | corekit_cppflags := | ||
94 | JSCORE_GIRSOURCES := | ||
95 | WEBKIT_GIRSOURCES := | ||
96 | typelibsdir := | ||
97 | typelibs_DATA := | ||
98 | EXTRA_DIST := | ||
99 | BUILT_SOURCES := | ||
100 | CLEANFILES := | ||
101 | DISTCLEANFILES := | ||
102 | MAINTAINERCLEANFILES := | ||
103 | |||
104 | webcoregtk_cppflags += \ | ||
105 | -I$(top_builddir)/DerivedSources/webkit \ | ||
106 | -I$(srcdir)/WebCore/bindings \ | ||
107 | -I$(srcdir)/WebCore/bindings/gobject | ||
108 | |||
109 | # CFLAGS/CXXFLAGS used by WebCore and WebKit | ||
110 | # | ||
111 | # gtk+.pc already include glib, cairo, freetype and pango CFLAGS | ||
112 | # Don't include them for now to reduce the noise when compiling | ||
113 | # $(GLIB_CFLAGS) $(CAIRO_CFLAGS) $(PANGO_CFLAGS) $(FREETYPE_CFLAGS) | ||
114 | corekit_cflags += \ | ||
115 | -fno-strict-aliasing \ | ||
116 | $(COVERAGE_CFLAGS) \ | ||
117 | $(ENCHANT_CFLAGS) \ | ||
118 | $(GAIL_CFLAGS) \ | ||
119 | $(GEOCLUE_CFLAGS) \ | ||
120 | $(GLIB_CFLAGS) \ | ||
121 | $(GSTREAMER_CFLAGS) \ | ||
122 | $(GTK_CFLAGS) \ | ||
123 | $(HILDON_CFLAGS) \ | ||
124 | $(LIBSOUP_CFLAGS) \ | ||
125 | $(LIBXML_CFLAGS) \ | ||
126 | $(LIBXSLT_CFLAGS) \ | ||
127 | $(SQLITE3_CFLAGS) \ | ||
128 | $(UNICODE_CFLAGS) \ | ||
129 | $(XT_CFLAGS) | ||
130 | |||
131 | # When building webcore/webkit, we want WebCore/config.h and NOT | ||
132 | # JavaScriptCore/config.h, hence, it's important that WebCore/ should come first | ||
133 | # before JavaScriptCore in the include path. | ||
134 | corekit_cppflags += \ | ||
135 | $(global_cppflags) \ | ||
136 | $(webcore_cppflags) \ | ||
137 | $(webcoregtk_cppflags) \ | ||
138 | $(javascriptcore_cppflags) | ||
139 | |||
140 | # For the Gtk port we want to use XP_UNIX both in X11 and Mac | ||
141 | if !TARGET_WIN32 | ||
142 | corekit_cppflags += -DXP_UNIX | ||
143 | endif | ||
144 | |||
145 | # Default compiler flags | ||
146 | global_cflags += \ | ||
147 | -Wall -W -Wcast-align -Wchar-subscripts -Wreturn-type \ | ||
148 | -Wformat -Wformat-security -Wno-format-y2k -Wundef \ | ||
149 | -Wmissing-format-attribute -Wpointer-arith -Wwrite-strings \ | ||
150 | -Wno-unused-parameter -Wno-parentheses \ | ||
151 | -fno-exceptions | ||
152 | |||
153 | global_cxxflags += \ | ||
154 | $(global_cflags) \ | ||
155 | $(SYMBOL_VISIBILITY_INLINES) \ | ||
156 | -fno-rtti | ||
157 | |||
158 | # -no-undefined required for building DLLs on Windows | ||
159 | # It breaks the build on other platforms, so we use it conditionally | ||
160 | if OS_WIN32 | ||
161 | no_undefined = -no-undefined | ||
162 | version_script = -export-symbols-regex "^(webkit_|JS).*" | ||
163 | endif | ||
164 | |||
165 | if OS_GNU | ||
166 | version_script = -Wl,--version-script,$(srcdir)/autotools/symbols.filter | ||
167 | endif | ||
168 | |||
169 | # Shared libraries | ||
170 | lib_LTLIBRARIES += \ | ||
171 | libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la | ||
172 | |||
173 | # Convenience libraries | ||
174 | noinst_LTLIBRARIES += \ | ||
175 | libJavaScriptCore.la | ||
176 | |||
177 | # JavaScriptCore | ||
178 | javascriptcore_cppflags += \ | ||
179 | -I$(srcdir)/JavaScriptCore/ForwardingHeaders \ | ||
180 | -I$(srcdir)/JavaScriptCore/parser \ | ||
181 | -I$(srcdir)/JavaScriptCore/wtf \ | ||
182 | -I$(srcdir)/JavaScriptCore/wtf/gtk \ | ||
183 | -I$(srcdir)/JavaScriptCore/wtf/gobject \ | ||
184 | -I$(top_builddir)/DerivedSources | ||
185 | |||
186 | nodist_EXTRA_libJavaScriptCore_la_SOURCES = \ | ||
187 | $(javascriptcore_built_nosources) | ||
188 | |||
189 | nodist_libJavaScriptCore_la_SOURCES = \ | ||
190 | $(javascriptcore_built_sources) | ||
191 | |||
192 | libJavaScriptCore_ladir = $(prefix)/include/webkit-@WEBKITGTK_API_VERSION@/JavaScriptCore | ||
193 | libJavaScriptCore_la_HEADERS = $(javascriptcore_h_api) | ||
194 | |||
195 | libJavaScriptCore_la_SOURCES = \ | ||
196 | $(javascriptcore_sources) | ||
197 | |||
198 | libJavaScriptCore_la_LIBADD = \ | ||
199 | $(UNICODE_LIBS) \ | ||
200 | $(GLIB_LIBS) \ | ||
201 | -lpthread | ||
202 | |||
203 | libJavaScriptCore_la_CXXFLAGS = \ | ||
204 | $(global_cxxflags) \ | ||
205 | $(libJavaScriptCore_la_CFLAGS) | ||
206 | |||
207 | libJavaScriptCore_la_CFLAGS = \ | ||
208 | -fstrict-aliasing \ | ||
209 | -O3 \ | ||
210 | $(global_cflags) \ | ||
211 | $(GLIB_CFLAGS) \ | ||
212 | $(UNICODE_CFLAGS) | ||
213 | |||
214 | libJavaScriptCore_la_CPPFLAGS = \ | ||
215 | $(global_cppflags) \ | ||
216 | $(javascriptcore_cppflags) | ||
217 | |||
218 | # WebKit | ||
219 | nodist_EXTRA_libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_SOURCES = \ | ||
220 | $(webcore_built_nosources) | ||
221 | |||
222 | nodist_libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_SOURCES = \ | ||
223 | $(webcore_built_sources) \ | ||
224 | $(webkitgtk_built_sources) | ||
225 | |||
226 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_ladir = $(prefix)/include/webkit-@WEBKITGTK_API_VERSION@/webkit | ||
227 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS = \ | ||
228 | $(webkitgtk_h_api) \ | ||
229 | WebKit/gtk/webkit/webkitenumtypes.h | ||
230 | |||
231 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_SOURCES = \ | ||
232 | $(webcore_sources) \ | ||
233 | $(webcoregtk_sources) \ | ||
234 | $(webkitgtk_sources) | ||
235 | |||
236 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CXXFLAGS = \ | ||
237 | $(global_cxxflags) \ | ||
238 | $(corekit_cflags) | ||
239 | |||
240 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CFLAGS = \ | ||
241 | $(global_cflags) \ | ||
242 | $(corekit_cflags) | ||
243 | |||
244 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CPPFLAGS = \ | ||
245 | $(corekit_cppflags) \ | ||
246 | $(webkitgtk_cppflags) \ | ||
247 | $(HILDON_CPPFLAGS) | ||
248 | |||
249 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LDFLAGS = \ | ||
250 | -version-info @LIBWEBKITGTK_VERSION@ \ | ||
251 | $(version_script) \ | ||
252 | $(no_undefined) | ||
253 | |||
254 | libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LIBADD = \ | ||
255 | -lpthread \ | ||
256 | libJavaScriptCore.la \ | ||
257 | libWebCoreJS.la \ | ||
258 | libgdom.la \ | ||
259 | $(webcore_ldflags) \ | ||
260 | $(CAIRO_LIBS) \ | ||
261 | $(COVERAGE_LDFLAGS) \ | ||
262 | $(ENCHANT_LIBS) \ | ||
263 | $(FREETYPE_LIBS) \ | ||
264 | $(GAIL_LIBS) \ | ||
265 | $(GEOCLUE_LIBS) \ | ||
266 | $(GLIB_LIBS) \ | ||
267 | $(GSTREAMER_LIBS) \ | ||
268 | $(GTK_LIBS) \ | ||
269 | $(HILDON_LIBS) \ | ||
270 | $(JPEG_LIBS) \ | ||
271 | $(LIBSOUP_LIBS) \ | ||
272 | $(LIBXML_LIBS) \ | ||
273 | $(LIBXSLT_LIBS) \ | ||
274 | $(PANGO_LIBS) \ | ||
275 | $(PNG_LIBS) \ | ||
276 | $(SQLITE3_LIBS) \ | ||
277 | $(UNICODE_LIBS) \ | ||
278 | $(XT_LIBS) | ||
279 | |||
280 | libgdom_ladir = $(prefix)/include/webkit-@WEBKITGTK_API_VERSION@/webkit | ||
281 | nodist_libgdom_la_HEADERS = \ | ||
282 | $(libgdom_h_api) | ||
283 | |||
284 | libgdom_cleanfiles += \ | ||
285 | $(top_builddir)/WebKit/gtk/webkit/webkitdomenumtypes.h \ | ||
286 | $(top_builddir)/libgdom.la \ | ||
287 | $(top_builddir)/stamp-webkitdomenumtypes.h | ||
288 | |||
289 | # | ||
290 | # Extra checks and flags | ||
291 | global_cppflags += \ | ||
292 | -DBUILDING_CAIRO__=1 \ | ||
293 | -DBUILDING_GTK__=1 \ | ||
294 | -DWTF_CHANGES | ||
295 | |||
296 | if USE_ICU_UNICODE | ||
297 | global_cppflags += \ | ||
298 | -DWTF_USE_ICU_UNICODE=1 | ||
299 | endif | ||
300 | |||
301 | if USE_GLIB_UNICODE | ||
302 | global_cppflags += \ | ||
303 | -DWTF_USE_GLIB_UNICODE=1 | ||
304 | endif | ||
305 | |||
306 | if !ENABLE_FAST_MALLOC | ||
307 | global_cppflags += \ | ||
308 | -DUSE_SYSTEM_MALLOC | ||
309 | endif | ||
310 | |||
311 | if !ENABLE_DEBUG | ||
312 | global_cppflags += -DNDEBUG | ||
313 | global_cflags += $(SYMBOL_VISIBILITY) | ||
314 | else | ||
315 | webcoregtk_cppflags += \ | ||
316 | -DG_DISABLE_DEPRECATED \ | ||
317 | -DGDK_PIXBUF_DISABLE_DEPRECATED \ | ||
318 | -DGDK_DISABLE_DEPRECATED \ | ||
319 | -DGTK_DISABLE_DEPRECATED \ | ||
320 | -DPANGO_DISABLE_DEPRECATED | ||
321 | |||
322 | # Might be useful in the future | ||
323 | # -DGDK_MULTIHEAD_SAFE \ | ||
324 | # -DGTK_MULTIHEAD_SAFE | ||
325 | endif | ||
326 | |||
327 | if ENABLE_COVERAGE | ||
328 | global_cppflags += \ | ||
329 | -DGCC_GENERATE_TEST_COVERAGE_FILES \ | ||
330 | -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS | ||
331 | endif | ||
332 | |||
333 | webkitgtk_h_api += \ | ||
334 | $(srcdir)/WebKit/gtk/webkit/webkit.h \ | ||
335 | $(srcdir)/WebKit/gtk/webkit/webkitdefines.h \ | ||
336 | $(srcdir)/WebKit/gtk/webkit/webkitdownload.h \ | ||
337 | $(srcdir)/WebKit/gtk/webkit/webkiterror.h \ | ||
338 | $(srcdir)/WebKit/gtk/webkit/webkithittestresult.h \ | ||
339 | $(srcdir)/WebKit/gtk/webkit/webkitnetworkrequest.h \ | ||
340 | $(srcdir)/WebKit/gtk/webkit/webkitnetworkresponse.h \ | ||
341 | $(srcdir)/WebKit/gtk/webkit/webkitsoupauthdialog.h \ | ||
342 | $(srcdir)/WebKit/gtk/webkit/webkitwebbackforwardlist.h \ | ||
343 | $(srcdir)/WebKit/gtk/webkit/webkitwebdatasource.h \ | ||
344 | $(srcdir)/WebKit/gtk/webkit/webkitwebframe.h \ | ||
345 | $(srcdir)/WebKit/gtk/webkit/webkitwebhistoryitem.h \ | ||
346 | $(srcdir)/WebKit/gtk/webkit/webkitwebinspector.h \ | ||
347 | $(srcdir)/WebKit/gtk/webkit/webkitwebnavigationaction.h \ | ||
348 | $(srcdir)/WebKit/gtk/webkit/webkitwebpolicydecision.h \ | ||
349 | $(srcdir)/WebKit/gtk/webkit/webkitgeolocationpolicydecision.h \ | ||
350 | $(srcdir)/WebKit/gtk/webkit/webkitwebresource.h \ | ||
351 | $(srcdir)/WebKit/gtk/webkit/webkitwebsettings.h \ | ||
352 | $(srcdir)/WebKit/gtk/webkit/webkitwebwindowfeatures.h \ | ||
353 | $(srcdir)/WebKit/gtk/webkit/webkitwebview.h \ | ||
354 | $(srcdir)/WebKit/gtk/webkit/webkitwebdatabase.h \ | ||
355 | $(srcdir)/WebKit/gtk/webkit/webkitsecurityorigin.h \ | ||
356 | $(top_builddir)/WebKit/gtk/webkit/webkitversion.h | ||
357 | |||
358 | webkitgtk_built_sources += \ | ||
359 | DerivedSources/webkitenumtypes.cpp \ | ||
360 | DerivedSources/webkitdomenumtypes.cpp \ | ||
361 | DerivedSources/webkitmarshal.cpp \ | ||
362 | DerivedSources/webkitmarshal.h \ | ||
363 | WebKit/gtk/webkit/webkitenumtypes.h | ||
364 | |||
365 | webkitgtk_sources += \ | ||
366 | WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \ | ||
367 | WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \ | ||
368 | WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \ | ||
369 | WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \ | ||
370 | WebKit/gtk/WebCoreSupport/DocumentLoaderGtk.cpp \ | ||
371 | WebKit/gtk/WebCoreSupport/DocumentLoaderGtk.h \ | ||
372 | WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \ | ||
373 | WebKit/gtk/WebCoreSupport/DragClientGtk.h \ | ||
374 | WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \ | ||
375 | WebKit/gtk/WebCoreSupport/EditorClientGtk.h \ | ||
376 | WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \ | ||
377 | WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \ | ||
378 | WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \ | ||
379 | WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \ | ||
380 | WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp \ | ||
381 | WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h \ | ||
382 | WebKit/gtk/webkit/webkitapplicationcache.cpp \ | ||
383 | WebKit/gtk/webkit/webkitdownload.cpp \ | ||
384 | WebKit/gtk/webkit/webkiterror.cpp \ | ||
385 | WebKit/gtk/webkit/webkithittestresult.cpp \ | ||
386 | WebKit/gtk/webkit/webkitnetworkrequest.cpp \ | ||
387 | WebKit/gtk/webkit/webkitnetworkresponse.cpp \ | ||
388 | WebKit/gtk/webkit/webkitprivate.cpp \ | ||
389 | WebKit/gtk/webkit/webkitprivate.h \ | ||
390 | WebKit/gtk/webkit/webkitsoupauthdialog.c \ | ||
391 | WebKit/gtk/webkit/webkitversion.cpp \ | ||
392 | WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \ | ||
393 | WebKit/gtk/webkit/webkitwebdatasource.cpp \ | ||
394 | WebKit/gtk/webkit/webkitwebframe.cpp \ | ||
395 | WebKit/gtk/webkit/webkitwebhistoryitem.cpp \ | ||
396 | WebKit/gtk/webkit/webkitwebinspector.cpp \ | ||
397 | WebKit/gtk/webkit/webkitwebnavigationaction.cpp \ | ||
398 | WebKit/gtk/webkit/webkitwebpolicydecision.cpp \ | ||
399 | WebKit/gtk/webkit/webkitgeolocationpolicydecision.cpp \ | ||
400 | WebKit/gtk/webkit/webkitwebresource.cpp \ | ||
401 | WebKit/gtk/webkit/webkitwebdatabase.cpp \ | ||
402 | WebKit/gtk/webkit/webkitsecurityorigin.cpp \ | ||
403 | WebKit/gtk/webkit/webkitwebsettings.cpp \ | ||
404 | WebKit/gtk/webkit/webkitwebview.cpp \ | ||
405 | WebKit/gtk/webkit/webkitwebwindowfeatures.cpp \ | ||
406 | WebKit/gtk/webkit/webkitworkers.cpp | ||
407 | |||
408 | webkitgtk_cppflags += \ | ||
409 | -DBUILDING_WEBKIT \ | ||
410 | -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ | ||
411 | -DDATA_DIR=\"${datadir}\" \ | ||
412 | -I$(srcdir)/WebKit/gtk \ | ||
413 | -I$(srcdir)/WebKit/gtk/WebCoreSupport \ | ||
414 | -I$(srcdir)/WebKit/gtk/webkit \ | ||
415 | -I$(top_builddir)/WebKit/gtk \ | ||
416 | -I$(top_builddir)/WebKit/gtk/webkit \ | ||
417 | -I$(GENSOURCESWEBKITDOM) | ||
418 | |||
419 | webkitgtk_cleanfiles += \ | ||
420 | $(top_builddir)/stamp-webkitmarshal.cpp \ | ||
421 | $(top_builddir)/stamp-webkitmarshal.h \ | ||
422 | $(top_builddir)/stamp-webkitenumtypes.cpp \ | ||
423 | $(top_builddir)/stamp-webkitenumtypes.h \ | ||
424 | $(top_builddir)/Programs/GtkLauncher \ | ||
425 | $(top_builddir)/WebKit/gtk/docs/version.xml \ | ||
426 | $(top_builddir)/WebKit/gtk/docs/GNUmakefile \ | ||
427 | $(top_builddir)/WebKit/gtk/@WEBKITGTK_PC_NAME@-@WEBKITGTK_API_VERSION@.pc \ | ||
428 | $(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h \ | ||
429 | $(top_builddir)/WebKit/gtk/webkit/webkitversion.h | ||
430 | |||
431 | pkgconfigdir = $(libdir)/pkgconfig | ||
432 | pkgconfig_DATA = WebKit/gtk/@WEBKITGTK_PC_NAME@-@WEBKITGTK_API_VERSION@.pc | ||
433 | |||
434 | if ENABLE_INTROSPECTION | ||
435 | |||
436 | JSCore-@WEBKITGTK_API_VERSION@.gir: $(builddir)/WebKit/gtk/JSCore-@WEBKITGTK_API_VERSION@.gir | ||
437 | cp $(builddir)/WebKit/gtk/JSCore-@WEBKITGTK_API_VERSION@.gir $(builddir)/ | ||
438 | |||
439 | JSCORE_GIRSOURCES += JSCore-@WEBKITGTK_API_VERSION@.gir | ||
440 | WEBKIT_GIRSOURCES += WebKit-@WEBKITGTK_API_VERSION@.gir | ||
441 | |||
442 | $(WEBKIT_GIRSOURCES): $(G_IR_SCANNER) $(JSCORE_GIRSOURCES) libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la | ||
443 | $(AM_V_GEN)$(G_IR_SCANNER) -v --namespace WebKit --nsversion=@WEBKITGTK_API_VERSION@ \ | ||
444 | --include=GObject-2.0 \ | ||
445 | --include=Gtk-@GTK_API_VERSION@ \ | ||
446 | --include=JSCore-@WEBKITGTK_API_VERSION@ \ | ||
447 | --include=Soup-2.4 \ | ||
448 | --library=webkitgtk-@WEBKITGTK_API_VERSION@ \ | ||
449 | --libtool="$(LIBTOOL)" \ | ||
450 | --pkg gobject-2.0 \ | ||
451 | --pkg gtk+-@GTK_API_VERSION@ \ | ||
452 | --pkg libsoup-2.4 \ | ||
453 | --output $@ \ | ||
454 | --add-include-path $(top_srcdir)/WebKit/gtk \ | ||
455 | --add-include-path $(builddir) \ | ||
456 | -I$(top_srcdir)/WebKit/gtk \ | ||
457 | -I$(top_builddir)/WebKit/gtk \ | ||
458 | -I$(top_builddir)/DerivedSources \ | ||
459 | -I$(top_srcdir)/JavaScriptCore/ForwardingHeaders \ | ||
460 | -I$(top_srcdir) \ | ||
461 | $(webkitgtk_h_api) \ | ||
462 | $(libgdom_h_api) | ||
463 | |||
464 | girdir = $(datadir)/gir-1.0 | ||
465 | gir_DATA = $(WEBKIT_GIRSOURCES) $(JSCORE_GIRSOURCES) | ||
466 | |||
467 | typelibsdir += $(libdir)/girepository-1.0 | ||
468 | typelibs_DATA += $(JSCORE_GIRSOURCES:.gir=.typelib) $(WEBKIT_GIRSOURCES:.gir=.typelib) | ||
469 | |||
470 | %.typelib: %.gir $(G_IR_COMPILER) | ||
471 | $(AM_V_GEN)$(G_IR_COMPILER) --includedir $(top_srcdir)/WebKit/gtk --includedir $(builddir) $< -o $@ | ||
472 | |||
473 | CLEANFILES += $(JSCORE_GIRSOURCES) $(WEBKIT_GIRSOURCES) $(typelibs_DATA) | ||
474 | |||
475 | endif | ||
476 | |||
477 | EXTRA_DIST += $(builddir)/WebKit/gtk/JSCore-@WEBKITGTK_API_VERSION@.gir | ||
478 | |||
479 | WEBKIT_MARSHAL = $(GENSOURCES)/webkitmarshal | ||
480 | WEBKIT_MARSHAL_LIST = $(top_srcdir)/WebKit/gtk/webkitmarshal.list | ||
481 | |||
482 | $(WEBKIT_MARSHAL).cpp: stamp-webkitmarshal.cpp | ||
483 | @true | ||
484 | |||
485 | $(WEBKIT_MARSHAL).h: stamp-webkitmarshal.h | ||
486 | @true | ||
487 | |||
488 | stamp-webkitmarshal.cpp: $(WEBKIT_MARSHAL_LIST) | ||
489 | $(AM_V_GEN) echo "extern \"C\" {" > $(WEBKIT_MARSHAL).cpp && \ | ||
490 | $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --body >> $(WEBKIT_MARSHAL).cpp && echo '}' >> $(WEBKIT_MARSHAL).cpp && \ | ||
491 | echo timestamp > $(@F) | ||
492 | |||
493 | stamp-webkitmarshal.h: $(WEBKIT_MARSHAL_LIST) | ||
494 | $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --header > $(WEBKIT_MARSHAL).h && \ | ||
495 | echo timestamp > $(@F) | ||
496 | |||
497 | WebKit/gtk/webkit/webkitenumtypes.h: stamp-webkitenumtypes.h | ||
498 | @true | ||
499 | stamp-webkitenumtypes.h: $(webkitgtk_h_api) GNUmakefile | ||
500 | $(AM_V_GEN)glib-mkenums \ | ||
501 | --fhead "#ifndef WEBKIT_ENUM_TYPES_H\n" \ | ||
502 | --fhead "#define WEBKIT_ENUM_TYPES_H\n\n" \ | ||
503 | --fhead "#include <glib-object.h>\n\n" \ | ||
504 | --fhead "#include <webkit/webkitdefines.h>\n\n" \ | ||
505 | --fhead "G_BEGIN_DECLS\n\n" \ | ||
506 | --ftail "G_END_DECLS\n\n" \ | ||
507 | --ftail "#endif\n" \ | ||
508 | --fprod "#include <webkit/@basename@>\n\n" \ | ||
509 | --eprod "#define WEBKIT_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n\n" \ | ||
510 | --eprod "WEBKIT_API GType\n@enum_name@_get_type(void);\n\n" \ | ||
511 | $(webkitgtk_h_api) | \ | ||
512 | sed 's,web_kit,webkit,' | \ | ||
513 | sed 's,WEBKIT_TYPE_KIT,WEBKIT_TYPE,' \ | ||
514 | > xgen-gth \ | ||
515 | && (cmp -s xgen-gth WebKit/gtk/webkit/webkitenumtypes.h || cp xgen-gth WebKit/gtk/webkit/webkitenumtypes.h) \ | ||
516 | && rm -f xgen-gth \ | ||
517 | && echo timestamp > $(@F) | ||
518 | |||
519 | DerivedSources/webkitenumtypes.cpp: $(webkitgtk_h_api) GNUmakefile | ||
520 | $(AM_V_GEN)glib-mkenums \ | ||
521 | --fhead "#include <config.h>\n" \ | ||
522 | --fhead "#include <glib-object.h>\n" \ | ||
523 | --fhead "#include \"$(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h\"\n\n" \ | ||
524 | --fhead "extern \"C\" {\n\n" \ | ||
525 | --fprod "\n/* enumerations from \"@filename@\" */" \ | ||
526 | --vhead "static const G@Type@Value _@enum_name@_values[] = {" \ | ||
527 | --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \ | ||
528 | --vtail " { 0, NULL, NULL }\n};\n\n" \ | ||
529 | --vtail "GType @enum_name@_get_type(void)\n{\n" \ | ||
530 | --vtail " static GType type = 0;\n\n" \ | ||
531 | --vtail " if (!type)\n" \ | ||
532 | --vtail " type = g_@type@_register_static(\"@EnumName@\", _@enum_name@_values);\n\n" \ | ||
533 | --vtail " return type;\n}\n\n" \ | ||
534 | --ftail "}\n" \ | ||
535 | $(webkitgtk_h_api) | \ | ||
536 | sed 's,web_kit,webkit,' \ | ||
537 | > xgen-gtc \ | ||
538 | && cp xgen-gtc $@ \ | ||
539 | && rm -f xgen-gtc | ||
540 | |||
541 | WebKit/gtk/webkit/webkitdomenumtypes.h: stamp-webkitdomenumtypes.h | ||
542 | @true | ||
543 | stamp-webkitdomenumtypes.h: $(libgdom_h_api) GNUmakefile | ||
544 | $(AM_V_GEN)glib-mkenums \ | ||
545 | --fhead "#ifndef WEBKIT_DOM_ENUM_TYPES_H\n" \ | ||
546 | --fhead "#define WEBKIT_DOM_ENUM_TYPES_H\n\n" \ | ||
547 | --fhead "#include <glib-object.h>\n\n" \ | ||
548 | --fhead "G_BEGIN_DECLS\n\n" \ | ||
549 | --ftail "G_END_DECLS\n\n" \ | ||
550 | --ftail "#endif\n" \ | ||
551 | --fprod "#include <webkit/@basename@>\n\n" \ | ||
552 | --eprod "#define WEBKIT_DOM_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n\n" \ | ||
553 | --eprod "WEBKIT_API GType\n@enum_name@_get_type(void);n\n" \ | ||
554 | $(libgdom_h_api) | \ | ||
555 | sed 's,web_kit,webkit_dom,' | \ | ||
556 | sed 's,WEBKIT_DOM_TYPE_KIT,WEBKIT_DOM_TYPE,' \ | ||
557 | > xgen-cgth \ | ||
558 | && (cmp -s xgen-cgth WebKit/gtk/webkit/webkitdomenumtypes.h || cp xgen-cgth WebKit/gtk/webkit/webkitdomenumtypes.h) \ | ||
559 | && rm -f xgen-cgth \ | ||
560 | && echo timestamp > $(@F) | ||
561 | |||
562 | DerivedSources/webkitdomenumtypes.cpp: $(top_builddir)/WebKit/gtk/webkit/webkitdomenumtypes.h $(libgdom_h_api) GNUmakefile | ||
563 | $(AM_V_GEN)glib-mkenums \ | ||
564 | --fhead "#include <config.h>\n" \ | ||
565 | --fhead "#include <glib-object.h>\n" \ | ||
566 | --fhead "#include \"$(top_builddir)/WebKit/gtk/webkit/webkitdomenumtypes.h\"\n\n" \ | ||
567 | --fhead "extern \"C\" {\n\n" \ | ||
568 | --fprod "\n/* enumerations from \"@filename@\" */" \ | ||
569 | --vhead "static const G@Type@Value _@enum_name@_values] = {" \ | ||
570 | --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \ | ||
571 | --vtail " { 0, NULL, NULL }\n};\n\n" \ | ||
572 | --vtail "GType @enum_name@_get_type(void)\n{\n" \ | ||
573 | --vtail " static GType type = 0;\n\n" \ | ||
574 | --vtail " if (!type)\n" \ | ||
575 | --vtail " type = g_@type@_register_static(\"@EnumName@\", _@enum_name@_values);\n\n" \ | ||
576 | --vtail " return type;\n}\n\n" \ | ||
577 | --ftail "}\n" \ | ||
578 | $(libgdom_h_api) | \ | ||
579 | sed 's,web_kit,webkitdom,' \ | ||
580 | > xgen-cgtc \ | ||
581 | && cp xgen-cgtc $@ \ | ||
582 | && rm -f xgen-cgtc | ||
583 | |||
584 | # Files that will be distributed | ||
585 | EXTRA_DIST += \ | ||
586 | $(srcdir)/gtk-doc.make \ | ||
587 | WebKit/LICENSE \ | ||
588 | $(javascriptcore_dist) \ | ||
589 | $(webcore_dist) \ | ||
590 | $(srcdir)/autotools/symbols.filter \ | ||
591 | $(srcdir)/WebKit/gtk/ChangeLog \ | ||
592 | $(srcdir)/WebKit/gtk/NEWS \ | ||
593 | $(srcdir)/WebKit/gtk/webkitmarshal.list \ | ||
594 | $(srcdir)/WebKit/gtk/docs/GNUmakefile.* \ | ||
595 | $(srcdir)/WebKit/gtk/docs/webkitenvironment.xml \ | ||
596 | $(srcdir)/WebKit/gtk/docs/webkitgtk-docs.sgml \ | ||
597 | $(srcdir)/WebKit/gtk/docs/webkitgtk-sections.txt \ | ||
598 | $(srcdir)/WebKit/gtk/docs/version.xml.in \ | ||
599 | $(srcdir)/WebKit/gtk/po/* \ | ||
600 | $(srcdir)/WebKit/gtk/resources/* \ | ||
601 | $(srcdir)/WebKit/gtk/tests/resources/* \ | ||
602 | $(srcdir)/WebKit/gtk/tests/test_utils.h | ||
603 | |||
604 | # extra resource files | ||
605 | resourcesdir = ${datadir}/webkit-@WEBKITGTK_API_VERSION@/resources | ||
606 | dist_resources_DATA = \ | ||
607 | $(shell ls $(srcdir)/WebKit/gtk/resources/*.html) | ||
608 | |||
609 | # END WEBKIT GTK+ | ||
610 | |||
611 | # Include module makefiles | ||
612 | include JavaScriptCore/GNUmakefile.am | ||
613 | include WebCore/GNUmakefile.am | ||
614 | include WebKitTools/GNUmakefile.am | ||
615 | include WebKit/gtk/po/GNUmakefile.am | ||
616 | |||
617 | # Build unit tests | ||
618 | noinst_PROGRAMS += $(TEST_PROGS) | ||
619 | |||
620 | webkit_tests_cflags = \ | ||
621 | -fno-strict-aliasing \ | ||
622 | -I$(srcdir)/JavaScriptCore/ForwardingHeaders \ | ||
623 | -I$(srcdir)/WebKit/gtk \ | ||
624 | -I$(top_builddir)/WebKit/gtk \ | ||
625 | -I$(top_builddir)/DerivedSources \ | ||
626 | -I$(top_srcdir)/WebCore/bindings \ | ||
627 | -I$(top_srcdir)/WebCore/bindings/gobject \ | ||
628 | $(global_cflags) \ | ||
629 | $(GLIB_CFLAGS) \ | ||
630 | $(GTK_CFLAGS) \ | ||
631 | $(LIBSOUP_CFLAGS) | ||
632 | |||
633 | webkit_tests_ldadd = \ | ||
634 | libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \ | ||
635 | $(GTK_LIBS) \ | ||
636 | $(GLIB_LIBS) \ | ||
637 | $(LIBSOUP_LIBS) | ||
638 | |||
639 | webkit_tests_ldflags = \ | ||
640 | -no-install \ | ||
641 | -no-fast-install | ||
642 | |||
643 | TEST_PROGS += \ | ||
644 | Programs/unittests/testdomdocument \ | ||
645 | Programs/unittests/testdomdomwindow \ | ||
646 | Programs/unittests/testdomnode \ | ||
647 | Programs/unittests/testhttpbackend \ | ||
648 | Programs/unittests/testloading \ | ||
649 | Programs/unittests/testglobals \ | ||
650 | Programs/unittests/testmimehandling \ | ||
651 | Programs/unittests/testnetworkrequest \ | ||
652 | Programs/unittests/testnetworkresponse \ | ||
653 | Programs/unittests/testwebframe \ | ||
654 | Programs/unittests/testwebbackforwardlist \ | ||
655 | Programs/unittests/testwebhistoryitem \ | ||
656 | Programs/unittests/testwindow \ | ||
657 | Programs/unittests/testdownload \ | ||
658 | Programs/unittests/testatk \ | ||
659 | Programs/unittests/testatkroles \ | ||
660 | Programs/unittests/testhittestresult \ | ||
661 | Programs/unittests/testwebsettings \ | ||
662 | Programs/unittests/testwebresource \ | ||
663 | Programs/unittests/testwebdatasource \ | ||
664 | Programs/unittests/testwebview \ | ||
665 | Programs/unittests/testkeyevents \ | ||
666 | Programs/unittests/testcopyandpaste | ||
667 | |||
668 | # Add additional tests here | ||
669 | Programs_unittests_testdomdocument_SOURCES = WebKit/gtk/tests/testdomdocument.c | ||
670 | Programs_unittests_testdomdocument_CFLAGS = $(webkit_tests_cflags) | ||
671 | Programs_unittests_testdomdocument_LDADD = $(webkit_tests_ldadd) | ||
672 | Programs_unittests_testdomdocument_LDFLAGS = $(webkit_tests_ldflags) | ||
673 | |||
674 | Programs_unittests_testdomdomwindow_SOURCES = WebKit/gtk/tests/testdomdomwindow.c | ||
675 | Programs_unittests_testdomdomwindow_CFLAGS = $(webkit_tests_cflags) | ||
676 | Programs_unittests_testdomdomwindow_LDADD = $(webkit_tests_ldadd) | ||
677 | Programs_unittests_testdomdomwindow_LDFLAGS = $(webkit_tests_ldflags) | ||
678 | |||
679 | Programs_unittests_testdomnode_SOURCES = WebKit/gtk/tests/testdomnode.c | ||
680 | Programs_unittests_testdomnode_CFLAGS = $(webkit_tests_cflags) | ||
681 | Programs_unittests_testdomnode_LDADD = $(webkit_tests_ldadd) | ||
682 | Programs_unittests_testdomnode_LDFLAGS = $(webkit_tests_ldflags) | ||
683 | |||
684 | Programs_unittests_testhttpbackend_SOURCES = WebKit/gtk/tests/testhttpbackend.c | ||
685 | Programs_unittests_testhttpbackend_CFLAGS = $(webkit_tests_cflags) | ||
686 | Programs_unittests_testhttpbackend_LDADD = $(webkit_tests_ldadd) | ||
687 | Programs_unittests_testhttpbackend_LDFLAGS = $(webkit_tests_ldflags) | ||
688 | |||
689 | Programs_unittests_testglobals_SOURCES = WebKit/gtk/tests/testglobals.c | ||
690 | Programs_unittests_testglobals_CFLAGS = $(webkit_tests_cflags) | ||
691 | Programs_unittests_testglobals_LDADD = $(webkit_tests_ldadd) | ||
692 | Programs_unittests_testglobals_LDFLAGS = $(webkit_tests_ldflags) | ||
693 | |||
694 | Programs_unittests_testloading_SOURCES = WebKit/gtk/tests/testloading.c | ||
695 | Programs_unittests_testloading_CFLAGS = $(webkit_tests_cflags) | ||
696 | Programs_unittests_testloading_LDADD = $(webkit_tests_ldadd) | ||
697 | Programs_unittests_testloading_LDFLAGS = $(webkit_tests_ldflags) | ||
698 | |||
699 | Programs_unittests_testmimehandling_SOURCES = WebKit/gtk/tests/testmimehandling.c WebKit/gtk/tests/test_utils.c | ||
700 | Programs_unittests_testmimehandling_CFLAGS = $(webkit_tests_cflags) | ||
701 | Programs_unittests_testmimehandling_LDADD = $(webkit_tests_ldadd) | ||
702 | Programs_unittests_testmimehandling_LDFLAGS = $(webkit_tests_ldflags) | ||
703 | |||
704 | Programs_unittests_testnetworkrequest_SOURCES = WebKit/gtk/tests/testnetworkrequest.c | ||
705 | Programs_unittests_testnetworkrequest_CFLAGS = $(webkit_tests_cflags) | ||
706 | Programs_unittests_testnetworkrequest_LDADD = $(webkit_tests_ldadd) | ||
707 | Programs_unittests_testnetworkrequest_LDFLAGS = $(webkit_tests_ldflags) | ||
708 | |||
709 | Programs_unittests_testnetworkresponse_SOURCES = WebKit/gtk/tests/testnetworkresponse.c | ||
710 | Programs_unittests_testnetworkresponse_CFLAGS = $(webkit_tests_cflags) | ||
711 | Programs_unittests_testnetworkresponse_LDADD = $(webkit_tests_ldadd) | ||
712 | Programs_unittests_testnetworkresponse_LDFLAGS = $(webkit_tests_ldflags) | ||
713 | |||
714 | Programs_unittests_testwebframe_SOURCES = WebKit/gtk/tests/testwebframe.c | ||
715 | Programs_unittests_testwebframe_CFLAGS = $(webkit_tests_cflags) | ||
716 | Programs_unittests_testwebframe_LDADD = $(webkit_tests_ldadd) | ||
717 | Programs_unittests_testwebframe_LDFLAGS = $(webkit_tests_ldflags) | ||
718 | |||
719 | Programs_unittests_testwebbackforwardlist_SOURCES = WebKit/gtk/tests/testwebbackforwardlist.c | ||
720 | Programs_unittests_testwebbackforwardlist_CFLAGS = $(webkit_tests_cflags) | ||
721 | Programs_unittests_testwebbackforwardlist_LDADD = $(webkit_tests_ldadd) | ||
722 | Programs_unittests_testwebbackforwardlist_LDFLAGS = $(webkit_tests_ldflags) | ||
723 | |||
724 | Programs_unittests_testwebhistoryitem_SOURCES = WebKit/gtk/tests/testwebhistoryitem.c | ||
725 | Programs_unittests_testwebhistoryitem_CFLAGS = $(webkit_tests_cflags) | ||
726 | Programs_unittests_testwebhistoryitem_LDADD = $(webkit_tests_ldadd) | ||
727 | Programs_unittests_testwebhistoryitem_LDFLAGS = $(webkit_tests_ldflags) | ||
728 | |||
729 | Programs_unittests_testwindow_SOURCES = WebKit/gtk/tests/testwindow.c | ||
730 | Programs_unittests_testwindow_CFLAGS = $(webkit_tests_cflags) | ||
731 | Programs_unittests_testwindow_LDADD = $(webkit_tests_ldadd) | ||
732 | Programs_unittests_testwindow_LDFLAGS = $(webkit_tests_ldflags) | ||
733 | |||
734 | Programs_unittests_testdownload_SOURCES = WebKit/gtk/tests/testdownload.c | ||
735 | Programs_unittests_testdownload_CFLAGS = $(webkit_tests_cflags) | ||
736 | Programs_unittests_testdownload_LDADD = $(webkit_tests_ldadd) | ||
737 | Programs_unittests_testdownload_LDFLAGS = $(webkit_tests_ldflags) | ||
738 | |||
739 | Programs_unittests_testatk_SOURCES = WebKit/gtk/tests/testatk.c | ||
740 | Programs_unittests_testatk_CFLAGS = $(webkit_tests_cflags) | ||
741 | Programs_unittests_testatk_LDADD = $(webkit_tests_ldadd) | ||
742 | Programs_unittests_testatk_LDFLAGS = $(webkit_tests_ldflags) | ||
743 | |||
744 | Programs_unittests_testatkroles_SOURCES = WebKit/gtk/tests/testatkroles.c | ||
745 | Programs_unittests_testatkroles_CFLAGS = $(webkit_tests_cflags) | ||
746 | Programs_unittests_testatkroles_LDADD = $(webkit_tests_ldadd) | ||
747 | Programs_unittests_testatkroles_LDFLAGS = $(webkit_tests_ldflags) | ||
748 | |||
749 | Programs_unittests_testwebsettings_SOURCES = WebKit/gtk/tests/testwebsettings.c | ||
750 | Programs_unittests_testwebsettings_CFLAGS = $(webkit_tests_cflags) | ||
751 | Programs_unittests_testwebsettings_LDADD = $(webkit_tests_ldadd) | ||
752 | Programs_unittests_testwebsettings_LDFLAGS = $(webkit_tests_ldflags) | ||
753 | |||
754 | Programs_unittests_testwebresource_SOURCES = WebKit/gtk/tests/testwebresource.c | ||
755 | Programs_unittests_testwebresource_CFLAGS = $(webkit_tests_cflags) | ||
756 | Programs_unittests_testwebresource_LDADD = $(webkit_tests_ldadd) | ||
757 | |||
758 | Programs_unittests_testwebdatasource_SOURCES = WebKit/gtk/tests/testwebdatasource.c | ||
759 | Programs_unittests_testwebdatasource_CFLAGS = $(webkit_tests_cflags) | ||
760 | Programs_unittests_testwebdatasource_LDADD = $(webkit_tests_ldadd) | ||
761 | |||
762 | Programs_unittests_testwebview_SOURCES = WebKit/gtk/tests/testwebview.c WebKit/gtk/tests/test_utils.c | ||
763 | Programs_unittests_testwebview_CFLAGS = $(webkit_tests_cflags) | ||
764 | Programs_unittests_testwebview_LDADD = $(webkit_tests_ldadd) | ||
765 | Programs_unittests_testwebview_LDFLAGS = $(webkit_tests_ldflags) | ||
766 | |||
767 | Programs_unittests_testhittestresult_SOURCES = WebKit/gtk/tests/testhittestresult.c | ||
768 | Programs_unittests_testhittestresult_CFLAGS = $(webkit_tests_cflags) | ||
769 | Programs_unittests_testhittestresult_LDADD = $(webkit_tests_ldadd) | ||
770 | |||
771 | Programs_unittests_testkeyevents_SOURCES = WebKit/gtk/tests/testkeyevents.c | ||
772 | Programs_unittests_testkeyevents_CFLAGS = $(webkit_tests_cflags) | ||
773 | Programs_unittests_testkeyevents_LDADD = $(webkit_tests_ldadd) | ||
774 | Programs_unittests_testkeyevents_LDFLAGS = $(webkit_tests_ldflags) | ||
775 | |||
776 | Programs_unittests_testcopyandpaste_SOURCES = WebKit/gtk/tests/testcopyandpaste.c | ||
777 | Programs_unittests_testcopyandpaste_CFLAGS = $(webkit_tests_cflags) | ||
778 | Programs_unittests_testcopyandpaste_LDADD = $(webkit_tests_ldadd) | ||
779 | Programs_unittests_testcopyandpaste_LDFLAGS = $(webkit_tests_ldflags) | ||
780 | |||
781 | # Autogenerated sources | ||
782 | BUILT_SOURCES += \ | ||
783 | $(javascriptcore_built_sources) \ | ||
784 | $(javascriptcore_built_nosources) \ | ||
785 | $(webcore_built_sources) \ | ||
786 | $(webcore_built_nosources) \ | ||
787 | $(webkitgtk_built_sources) \ | ||
788 | $(webkitgtk_built_nosources) \ | ||
789 | $(gdom_built_nosources) | ||
790 | |||
791 | # Project-wide clean rules | ||
792 | # Files that will be cleaned | ||
793 | CLEANFILES += \ | ||
794 | $(BUILT_SOURCES) \ | ||
795 | $(webkitgtk_cleanfiles) \ | ||
796 | $(libgdom_cleanfiles) | ||
797 | |||
798 | DISTCLEANFILES += \ | ||
799 | $(CLEANFILES) | ||
800 | |||
801 | MAINTAINERCLEANFILES += \ | ||
802 | $(CLEANFILES) \ | ||
803 | $(srcdir)/aconfig.h.in \ | ||
804 | $(srcdir)/autotools/config.* \ | ||
805 | $(srcdir)/autotools/compile \ | ||
806 | $(srcdir)/autotools/depcomp \ | ||
807 | $(srcdir)/autotools/install-sh \ | ||
808 | $(srcdir)/autotools/missing \ | ||
809 | $(srcdir)/configure \ | ||
810 | $(srcdir)/GNUmakefile.in \ | ||
811 | $(srcdir)/INSTALL \ | ||
812 | $(srcdir)/README \ | ||
813 | $(top_builddir)/config.* | ||
814 | |||
815 | # Older automake versions (1.7) place Plo files in a different place so we need | ||
816 | # to create the output directory manually. | ||
817 | all-local: stamp-po | ||
818 | $(mkdir_p) $(top_builddir)/$(DEPDIR)/DerivedSources | ||
819 | |||
820 | # remove built sources and program directories | ||
821 | clean-local: | ||
822 | -rm -rf $(GENPROGRAMS) | ||
823 | |||
824 | maintainer-clean-local: distclean-local | ||
825 | |||
826 | distclean-local: | ||
827 | -rm -rf $(GENSOURCES) $(GENPROGRAMS) | ||
828 | |||
829 | dist-hook: | ||
830 | cp $(srcdir)/WebKit/gtk/NEWS $(distdir)/ | ||
831 | |||
832 | install-data-local: po-install-data-local | ||
833 | |||
834 | installdirs-data-local: po-installdirs-data-local | ||
835 | |||
836 | uninstall-local: po-uninstall-local | ||
837 | |||
838 | # Run all tests in cwd | ||
839 | # FIXME: we should run this under xvfb | ||
840 | test: $(TEST_PROGS) | ||
841 | $(GTESTER) --verbose $(TEST_PROGS); | ||
842 | |||
843 | # test-report: run tests in cwd and generate report | ||
844 | # full-report: run tests in cwd with -m perf and -m slow and generate report | ||
845 | # perf-report: run tests in cwd with -m perf and generate report | ||
846 | test-report full-report perf-report: $(TEST_PROGS) | ||
847 | @ case $@ in \ | ||
848 | test-report) test_options="-k";; \ | ||
849 | full-report) test_options="-k -m=perf";; \ | ||
850 | perf-report) test_options="-k -m=perf -m=slow";; \ | ||
851 | esac ; \ | ||
852 | $(GTESTER) --verbose $$test_options -o test-report.xml $(TEST_PROGS); \ | ||
853 | $(GTESTER_REPORT) test-report.xml > test-report.html ; | ||
854 | |||
855 | .PHONY: test test-report perf-report full-report | ||
856 | check-local: test | ||