399f7a412589e95dd706ef4aed0b01ed500111f7
[openembedded.git] / recipes / webkit / webkit-gtk / GNUmakefile.am
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 GENPROGRAMS := $(top_builddir)/Programs
39
40 # Script for creating hash tables
41 CREATE_HASH_TABLE = $(srcdir)/JavaScriptCore/create_hash_table
42
43 # Programs to run the WebKitGtk unit tests
44 GTESTER = gtester
45 GTESTER_REPORT = gtester-report
46
47 # Libraries and support components
48 bin_PROGRAMS :=
49 noinst_PROGRAMS :=
50 noinst_HEADERS :=
51 noinst_LTLIBRARIES :=
52 lib_LIBRARIES :=
53 IDL_BINDINGS :=
54 TEST_PROGS :=
55 POFILES :=
56 MOFILES :=
57 javascriptcore_h_api :=
58 javascriptcore_cppflags:=
59 javascriptcore_sources :=
60 javascriptcore_built_sources :=
61 javascriptcore_built_nosources :=
62 javascriptcore_dist :=
63 webcore_cppflags :=
64 webcore_sources :=
65 webcore_libadd :=
66 webcore_built_sources :=
67 webcore_built_nosources :=
68 webcore_dist :=
69 webcoregtk_cppflags :=
70 webcoregtk_sources :=
71 webkitgtk_h_api :=
72 webkitgtk_sources :=
73 webkitgtk_cppflags :=
74 webkitgtk_built_sources :=
75 webkitgtk_built_nosources :=
76 webkitgtk_cleanfiles :=
77 global_cppflags :=
78 global_cflags :=
79 global_cxxflags :=
80 corekit_cflags :=
81 corekit_cppflags :=
82 JSCORE_GIRSOURCES :=
83 WEBKIT_GIRSOURCES :=
84 typelibsdir :=
85 typelibs_DATA :=
86 EXTRA_DIST :=
87 BUILT_SOURCES :=
88 CLEANFILES :=
89 DISTCLEANFILES :=
90 MAINTAINERCLEANFILES :=
91
92 # CFLAGS/CXXFLAGS used by WebCore and WebKit
93 #
94 # gtk+.pc already include glib, cairo, freetype and pango CFLAGS
95 # Don't include them for now to reduce the noise when compiling
96 # $(GLIB_CFLAGS) $(CAIRO_CFLAGS) $(PANGO_CFLAGS)  $(FREETYPE_CFLAGS)
97 corekit_cflags += \
98         -fno-strict-aliasing \
99         $(COVERAGE_CFLAGS) \
100         $(ENCHANT_CFLAGS) \
101         $(GAIL_CFLAGS) \
102         $(GEOCLUE_CFLAGS) \
103         $(GLIB_CFLAGS) \
104         $(GSTREAMER_CFLAGS) \
105         $(GTK_CFLAGS) \
106         $(HILDON_CFLAGS) \
107         $(LIBSOUP_CFLAGS) \
108         $(LIBXML_CFLAGS) \
109         $(LIBXSLT_CFLAGS) \
110         $(SQLITE3_CFLAGS) \
111         $(UNICODE_CFLAGS) \
112         $(XT_CFLAGS)
113
114 # When building webcore/webkit, we want WebCore/config.h and NOT
115 # JavaScriptCore/config.h, hence, it's important that WebCore/ should come first
116 # before JavaScriptCore in the include path.
117 corekit_cppflags += \
118         $(global_cppflags) \
119         $(webcore_cppflags) \
120         $(webcoregtk_cppflags) \
121         $(javascriptcore_cppflags)
122
123 # For the Gtk port we want to use XP_UNIX both in X11 and Mac
124 if !TARGET_WIN32
125 corekit_cppflags += -DXP_UNIX
126 endif
127
128 # Default compiler flags
129 global_cflags += \
130         -Wall -W -Wcast-align -Wchar-subscripts -Wreturn-type \
131         -Wformat -Wformat-security -Wno-format-y2k -Wundef \
132         -Wmissing-format-attribute -Wpointer-arith -Wwrite-strings \
133         -Wno-unused-parameter -Wno-parentheses \
134         -fno-exceptions
135
136 global_cxxflags += \
137         $(global_cflags) \
138         $(SYMBOL_VISIBILITY_INLINES) \
139         -fno-rtti
140
141 # -no-undefined required for building DLLs on Windows
142 # It breaks the build on other platforms, so we use it conditionally
143 if OS_WIN32
144 no_undefined = -no-undefined
145 version_script = -export-symbols-regex "^(webkit_|JS).*"
146 endif
147
148 if OS_GNU
149 version_script = -Wl,--version-script,$(srcdir)/autotools/symbols.filter
150 endif
151
152 # Shared libraries
153 lib_LTLIBRARIES = \
154         libwebkit-1.0.la
155
156 # Convenience libraries
157 noinst_LTLIBRARIES += \
158         libJavaScriptCore.la
159
160 # JavaScriptCore
161 javascriptcore_cppflags += \
162         -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
163         -I$(srcdir)/JavaScriptCore/parser \
164         -I$(srcdir)/JavaScriptCore/wtf \
165         -I$(srcdir)/JavaScriptCore/wtf/gtk \
166         -I$(srcdir)/JavaScriptCore/wtf/gobject \
167         -I$(top_builddir)/DerivedSources
168
169 nodist_EXTRA_libJavaScriptCore_la_SOURCES = \
170         $(javascriptcore_built_nosources)
171
172 nodist_libJavaScriptCore_la_SOURCES = \
173         $(javascriptcore_built_sources)
174
175 libJavaScriptCore_ladir = $(prefix)/include/webkit-1.0/JavaScriptCore
176 libJavaScriptCore_la_HEADERS = $(javascriptcore_h_api)
177
178 libJavaScriptCore_la_SOURCES = \
179         $(javascriptcore_sources)
180
181 libJavaScriptCore_la_LIBADD = \
182         $(UNICODE_LIBS) \
183         $(GLIB_LIBS) \
184         -lpthread
185
186 libJavaScriptCore_la_CXXFLAGS = \
187         $(global_cxxflags) \
188         $(libJavaScriptCore_la_CFLAGS)
189
190 libJavaScriptCore_la_CFLAGS = \
191         -fstrict-aliasing \
192         -O3 \
193         $(global_cflags) \
194         $(GLIB_CFLAGS) \
195         $(UNICODE_CFLAGS)
196
197 libJavaScriptCore_la_CPPFLAGS = \
198         $(global_cppflags) \
199         $(javascriptcore_cppflags)
200
201 # WebKit
202 nodist_EXTRA_libwebkit_1_0_la_SOURCES = \
203         $(webcore_built_nosources)
204
205 nodist_libwebkit_1_0_la_SOURCES = \
206         $(webcore_built_sources) \
207         $(webkitgtk_built_sources)
208
209 libwebkit_1_0_ladir = $(prefix)/include/webkit-1.0/webkit
210 libwebkit_1_0_la_HEADERS = \
211         $(webkitgtk_h_api) \
212         WebKit/gtk/webkit/webkitenumtypes.h
213
214 libwebkit_1_0_la_SOURCES = \
215         $(webcore_sources) \
216         $(webcoregtk_sources) \
217         $(webkitgtk_sources)
218
219 libwebkit_1_0_la_CXXFLAGS = \
220         $(global_cxxflags) \
221         $(corekit_cflags)
222
223 libwebkit_1_0_la_CFLAGS = \
224         $(global_cflags) \
225         $(corekit_cflags)
226
227 libwebkit_1_0_la_CPPFLAGS = \
228         $(corekit_cppflags) \
229         $(webkitgtk_cppflags) \
230         $(HILDON_CPPFLAGS)
231
232 libwebkit_1_0_la_LDFLAGS = \
233         -version-info @LIBWEBKITGTK_VERSION@ \
234         $(version_script) \
235         $(no_undefined)
236
237 libwebkit_1_0_la_LIBADD = \
238         -lpthread \
239         libJavaScriptCore.la \
240         libWebCoreJS.la \
241         $(webcore_ldflags) \
242         $(CAIRO_LIBS) \
243         $(COVERAGE_LDFLAGS) \
244         $(ENCHANT_LIBS) \
245         $(FREETYPE_LIBS) \
246         $(GAIL_LIBS) \
247         $(GEOCLUE_LIBS) \
248         $(GLIB_LIBS) \
249         $(GSTREAMER_LIBS) \
250         $(GTK_LIBS) \
251         $(HILDON_LIBS) \
252         $(JPEG_LIBS) \
253         $(LIBSOUP_LIBS) \
254         $(LIBXML_LIBS) \
255         $(LIBXSLT_LIBS) \
256         $(PANGO_LIBS) \
257         $(PNG_LIBS) \
258         $(SQLITE3_LIBS) \
259         $(UNICODE_LIBS) \
260         $(XT_LIBS)
261
262 #
263 # Extra checks and flags
264 global_cppflags += \
265         -DBUILDING_CAIRO__=1 \
266         -DBUILDING_GTK__=1 \
267         -DWTF_CHANGES
268
269 if USE_ICU_UNICODE
270 global_cppflags += \
271         -DWTF_USE_ICU_UNICODE=1
272 endif
273
274 if USE_GLIB_UNICODE
275 global_cppflags += \
276         -DWTF_USE_GLIB_UNICODE=1
277 endif
278
279 if !ENABLE_FAST_MALLOC
280 global_cppflags += \
281         -DUSE_SYSTEM_MALLOC
282 endif
283
284 if !ENABLE_DEBUG
285 global_cppflags += -DNDEBUG
286 global_cflags += $(SYMBOL_VISIBILITY)
287
288 else
289 webcoregtk_cppflags += \
290         -DG_DISABLE_DEPRECATED \
291         -DGDK_PIXBUF_DISABLE_DEPRECATED \
292         -DGDK_DISABLE_DEPRECATED \
293         -DGTK_DISABLE_DEPRECATED \
294         -DPANGO_DISABLE_DEPRECATED
295
296 # Might be useful in the future
297 #       -DGDK_MULTIHEAD_SAFE \
298 #       -DGTK_MULTIHEAD_SAFE
299 endif
300
301 if ENABLE_COVERAGE
302 global_cppflags += \
303         -DGCC_GENERATE_TEST_COVERAGE_FILES \
304         -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS
305 endif
306
307 webkitgtk_h_api += \
308         $(srcdir)/WebKit/gtk/webkit/webkit.h \
309         $(srcdir)/WebKit/gtk/webkit/webkitdefines.h \
310         $(srcdir)/WebKit/gtk/webkit/webkitdownload.h \
311         $(srcdir)/WebKit/gtk/webkit/webkiterror.h \
312         $(srcdir)/WebKit/gtk/webkit/webkithittestresult.h \
313         $(srcdir)/WebKit/gtk/webkit/webkitnetworkrequest.h \
314         $(srcdir)/WebKit/gtk/webkit/webkitnetworkresponse.h \
315         $(srcdir)/WebKit/gtk/webkit/webkitsoupauthdialog.h \
316         $(srcdir)/WebKit/gtk/webkit/webkitwebbackforwardlist.h \
317         $(srcdir)/WebKit/gtk/webkit/webkitwebdatasource.h \
318         $(srcdir)/WebKit/gtk/webkit/webkitwebframe.h \
319         $(srcdir)/WebKit/gtk/webkit/webkitwebhistoryitem.h \
320         $(srcdir)/WebKit/gtk/webkit/webkitwebinspector.h \
321         $(srcdir)/WebKit/gtk/webkit/webkitwebnavigationaction.h \
322         $(srcdir)/WebKit/gtk/webkit/webkitwebpolicydecision.h \
323         $(srcdir)/WebKit/gtk/webkit/webkitgeolocationpolicydecision.h \
324         $(srcdir)/WebKit/gtk/webkit/webkitwebresource.h \
325         $(srcdir)/WebKit/gtk/webkit/webkitwebsettings.h \
326         $(srcdir)/WebKit/gtk/webkit/webkitwebwindowfeatures.h \
327         $(srcdir)/WebKit/gtk/webkit/webkitwebview.h \
328         $(srcdir)/WebKit/gtk/webkit/webkitwebdatabase.h \
329         $(srcdir)/WebKit/gtk/webkit/webkitsecurityorigin.h \
330         $(top_builddir)/WebKit/gtk/webkit/webkitversion.h
331
332 webkitgtk_built_sources += \
333         DerivedSources/webkitenumtypes.cpp \
334         DerivedSources/webkitmarshal.cpp \
335         DerivedSources/webkitmarshal.h \
336         WebKit/gtk/webkit/webkitenumtypes.h
337
338 webkitgtk_sources += \
339         WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
340         WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \
341         WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
342         WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \
343         WebKit/gtk/WebCoreSupport/DocumentLoaderGtk.cpp \
344         WebKit/gtk/WebCoreSupport/DocumentLoaderGtk.h \
345         WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
346         WebKit/gtk/WebCoreSupport/DragClientGtk.h \
347         WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
348         WebKit/gtk/WebCoreSupport/EditorClientGtk.h \
349         WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
350         WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \
351         WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
352         WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \
353         WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp \
354         WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h \
355         WebKit/gtk/webkit/webkitapplicationcache.cpp \
356         WebKit/gtk/webkit/webkitdownload.cpp \
357         WebKit/gtk/webkit/webkiterror.cpp \
358         WebKit/gtk/webkit/webkithittestresult.cpp \
359         WebKit/gtk/webkit/webkitnetworkrequest.cpp \
360         WebKit/gtk/webkit/webkitnetworkresponse.cpp \
361         WebKit/gtk/webkit/webkitprivate.cpp \
362         WebKit/gtk/webkit/webkitprivate.h \
363         WebKit/gtk/webkit/webkitsoupauthdialog.c \
364         WebKit/gtk/webkit/webkitversion.cpp \
365         WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \
366         WebKit/gtk/webkit/webkitwebdatasource.cpp \
367         WebKit/gtk/webkit/webkitwebframe.cpp \
368         WebKit/gtk/webkit/webkitwebhistoryitem.cpp \
369         WebKit/gtk/webkit/webkitwebinspector.cpp \
370         WebKit/gtk/webkit/webkitwebnavigationaction.cpp \
371         WebKit/gtk/webkit/webkitwebpolicydecision.cpp \
372         WebKit/gtk/webkit/webkitgeolocationpolicydecision.cpp \
373         WebKit/gtk/webkit/webkitwebresource.cpp \
374         WebKit/gtk/webkit/webkitwebdatabase.cpp \
375         WebKit/gtk/webkit/webkitsecurityorigin.cpp \
376         WebKit/gtk/webkit/webkitwebsettings.cpp \
377         WebKit/gtk/webkit/webkitwebview.cpp \
378         WebKit/gtk/webkit/webkitwebwindowfeatures.cpp \
379         WebKit/gtk/webkit/webkitworkers.cpp
380
381 webkitgtk_cppflags += \
382         -DBUILDING_WEBKIT \
383         -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
384         -DDATA_DIR=\"${datadir}\" \
385         -I$(srcdir)/WebKit/gtk \
386         -I$(srcdir)/WebKit/gtk/WebCoreSupport \
387         -I$(srcdir)/WebKit/gtk/webkit \
388         -I$(top_builddir)/WebKit/gtk/webkit
389
390 webkitgtk_cleanfiles += \
391         $(top_builddir)/stamp-webkitmarshal.cpp \
392         $(top_builddir)/stamp-webkitmarshal.h \
393         $(top_builddir)/stamp-webkitenumtypes.cpp \
394         $(top_builddir)/stamp-webkitenumtypes.h \
395         $(top_builddir)/Programs/GtkLauncher \
396         $(top_builddir)/WebKit/gtk/docs/version.xml \
397         $(top_builddir)/WebKit/gtk/docs/GNUmakefile \
398         $(top_builddir)/WebKit/gtk/webkit-1.0.pc \
399         $(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h \
400         $(top_builddir)/WebKit/gtk/webkit/webkitversion.h
401
402 pkgconfigdir = $(libdir)/pkgconfig
403 pkgconfig_DATA = WebKit/gtk/webkit-1.0.pc
404
405 if ENABLE_INTROSPECTION
406 JSCORE_GIRSOURCES += JSCore-1.0.gir
407 WEBKIT_GIRSOURCES += WebKit-1.0.gir
408
409 # JSCore-1.0.gir is handwritten - this is a hack to make the typelib
410 # generation work during make dist
411 JSCore-1.0.gir: $(srcdir)/WebKit/gtk/JSCore-1.0.gir
412         cp $(srcdir)/WebKit/gtk/JSCore-1.0.gir $(builddir)/
413
414 $(WEBKIT_GIRSOURCES): $(JSCORE_GIRSOURCES) $(G_IR_SCANNER) libwebkit-1.0.la
415         $(AM_V_GEN)$(G_IR_SCANNER) -v --namespace WebKit --nsversion=1.0 \
416              --include=GObject-2.0 \
417              --include=Gtk-2.0 \
418              --include=JSCore-1.0 \
419              --include=Soup-2.4 \
420              --library=webkit-1.0 \
421              --libtool="$(LIBTOOL)" \
422              --pkg gobject-2.0 \
423              --pkg gtk+-2.0 \
424              --pkg libsoup-2.4 \
425              --output $@ \
426              --add-include-path $(top_srcdir)/WebKit/gtk \
427              -I$(top_srcdir)/WebKit/gtk \
428              -I$(top_builddir)/WebKit/gtk \
429              -I$(top_srcdir)/JavaScriptCore/ForwardingHeaders \
430              -I$(top_srcdir) \
431              $(webkitgtk_h_api)
432
433 girdir = $(GIRDIR)
434 gir_DATA = $(WEBKIT_GIRSOURCES) $(JSCORE_GIRSOURCES)
435
436 typelibsdir += $(GIRTYPELIBDIR)
437 typelibs_DATA += $(JSCORE_GIRSOURCES:.gir=.typelib) $(WEBKIT_GIRSOURCES:.gir=.typelib)
438
439 %.typelib: %.gir $(G_IR_COMPILER)
440         $(AM_V_GEN)$(G_IR_COMPILER) --includedir $(top_srcdir)/WebKit/gtk $< -o $@
441
442 CLEANFILES += $(JSCORE_GIRSOURCES) $(WEBKIT_GIRSOURCES) $(typelibs_DATA)
443
444 endif
445
446 EXTRA_DIST += WebKit/gtk/JSCore-1.0.gir
447
448 WEBKIT_MARSHAL = $(GENSOURCES)/webkitmarshal
449 WEBKIT_MARSHAL_LIST = $(top_srcdir)/WebKit/gtk/webkitmarshal.list
450
451 $(WEBKIT_MARSHAL).cpp: stamp-webkitmarshal.cpp
452         @true
453
454 $(WEBKIT_MARSHAL).h: stamp-webkitmarshal.h
455         @true
456
457 stamp-webkitmarshal.cpp: $(WEBKIT_MARSHAL_LIST)
458         $(AM_V_GEN) echo "extern \"C\" {" > $(WEBKIT_MARSHAL).cpp && \
459         $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --body >> $(WEBKIT_MARSHAL).cpp && echo '}' >> $(WEBKIT_MARSHAL).cpp && \
460         echo timestamp > $(@F)
461
462 stamp-webkitmarshal.h: $(WEBKIT_MARSHAL_LIST)
463         $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --header > $(WEBKIT_MARSHAL).h && \
464         echo timestamp > $(@F)
465
466 WebKit/gtk/webkit/webkitenumtypes.h: stamp-webkitenumtypes.h
467         @true
468 stamp-webkitenumtypes.h: $(webkitgtk_h_api) GNUmakefile
469         $(AM_V_GEN)glib-mkenums \
470                         --fhead "#ifndef WEBKIT_ENUM_TYPES_H\n" \
471                         --fhead "#define WEBKIT_ENUM_TYPES_H\n\n" \
472                         --fhead "#include <glib-object.h>\n\n" \
473                         --fhead "#include <webkit/webkitdefines.h>\n\n" \
474                         --fhead "G_BEGIN_DECLS\n\n" \
475                         --ftail "G_END_DECLS\n\n" \
476                         --ftail "#endif\n" \
477                         --fprod "#include <webkit/@basename@>\n\n" \
478                         --eprod "#define WEBKIT_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n\n" \
479                         --eprod "WEBKIT_API GType\n@enum_name@_get_type(void);\n\n" \
480                 $(webkitgtk_h_api) | \
481                 sed 's,web_kit,webkit,' | \
482                 sed 's,WEBKIT_TYPE_KIT,WEBKIT_TYPE,' \
483                 > xgen-gth \
484         && (cmp -s xgen-gth WebKit/gtk/webkit/webkitenumtypes.h || cp xgen-gth WebKit/gtk/webkit/webkitenumtypes.h) \
485         && rm -f xgen-gth \
486         && echo timestamp > $(@F)
487
488 DerivedSources/webkitenumtypes.cpp: $(webkitgtk_h_api) GNUmakefile
489         $(AM_V_GEN)glib-mkenums \
490                         --fhead "#include <config.h>\n" \
491                         --fhead "#include <glib-object.h>\n" \
492                         --fhead "#include \"$(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h\"\n\n" \
493                         --fhead "extern \"C\" {\n\n" \
494                         --fprod "\n/* enumerations from \"@filename@\" */" \
495                         --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
496                         --vprod "    { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
497                         --vtail "    { 0, NULL, NULL }\n};\n\n" \
498                         --vtail "GType @enum_name@_get_type(void)\n{\n" \
499                         --vtail "    static GType type = 0;\n\n" \
500                         --vtail "    if (!type)\n" \
501                         --vtail "        type = g_@type@_register_static(\"@EnumName@\", _@enum_name@_values);\n\n" \
502                         --vtail "    return type;\n}\n\n" \
503                         --ftail "}\n" \
504                 $(webkitgtk_h_api) | \
505                 sed 's,web_kit,webkit,' \
506                 > xgen-gtc \
507         && cp xgen-gtc $@ \
508         && rm -f xgen-gtc
509
510 # Files that will be distributed
511 EXTRA_DIST += \
512         $(srcdir)/gtk-doc.make \
513         WebKit/LICENSE \
514         $(javascriptcore_dist) \
515         $(webcore_dist) \
516         $(srcdir)/autotools/symbols.filter \
517         $(srcdir)/WebKit/gtk/ChangeLog \
518         $(srcdir)/WebKit/gtk/NEWS \
519         $(srcdir)/WebKit/gtk/webkitmarshal.list \
520         $(srcdir)/WebKit/gtk/docs/GNUmakefile.* \
521         $(srcdir)/WebKit/gtk/docs/webkitenvironment.xml \
522         $(srcdir)/WebKit/gtk/docs/webkitgtk-docs.sgml \
523         $(srcdir)/WebKit/gtk/docs/webkitgtk-sections.txt \
524         $(srcdir)/WebKit/gtk/docs/version.xml.in \
525         $(srcdir)/WebKit/gtk/po/* \
526         $(srcdir)/WebKit/gtk/resources/* \
527         $(srcdir)/WebKit/gtk/tests/resources/* \
528         $(srcdir)/WebKit/gtk/tests/test_utils.h
529
530 # extra resource files
531 resourcesdir = ${datadir}/webkit-1.0/resources
532 dist_resources_DATA = \
533         $(shell ls $(srcdir)/WebKit/gtk/resources/*.html)
534
535 # END WEBKIT GTK+
536
537 # Include module makefiles
538 include JavaScriptCore/GNUmakefile.am
539 include WebCore/GNUmakefile.am
540 include WebKitTools/GNUmakefile.am
541 include WebKit/gtk/po/GNUmakefile.am
542
543 # Build unit tests
544 noinst_PROGRAMS += $(TEST_PROGS)
545
546 webkit_tests_cflags = \
547         -fno-strict-aliasing \
548         -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
549         -I$(srcdir)/WebKit/gtk \
550         -I$(top_builddir)/WebKit/gtk \
551         $(global_cflags) \
552         $(GLIB_CFLAGS) \
553         $(GTK_CFLAGS) \
554         $(LIBSOUP_CFLAGS)
555
556 webkit_tests_ldadd = \
557         libwebkit-1.0.la \
558         $(GTK_LIBS)     \
559         $(GLIB_LIBS) \
560         $(LIBSOUP_LIBS)
561
562 webkit_tests_ldflags = \
563         -no-install \
564         -no-fast-install
565
566 TEST_PROGS += Programs/unittests/testhttpbackend \
567         Programs/unittests/testloading \
568         Programs/unittests/testmimehandling \
569         Programs/unittests/testnetworkrequest \
570         Programs/unittests/testnetworkresponse \
571         Programs/unittests/testwebframe \
572         Programs/unittests/testwebbackforwardlist \
573         Programs/unittests/testwebhistoryitem \
574         Programs/unittests/testwindow \
575         Programs/unittests/testdownload \
576         Programs/unittests/testatk \
577         Programs/unittests/testhittestresult \
578         Programs/unittests/testwebsettings \
579         Programs/unittests/testwebresource \
580         Programs/unittests/testwebdatasource \
581         Programs/unittests/testwebview \
582         Programs/unittests/testkeyevents
583
584 # Add additional tests here
585 Programs_unittests_testhttpbackend_SOURCES = WebKit/gtk/tests/testhttpbackend.c
586 Programs_unittests_testhttpbackend_CFLAGS = $(webkit_tests_cflags)
587 Programs_unittests_testhttpbackend_LDADD = $(webkit_tests_ldadd)
588 Programs_unittests_testhttpbackend_LDFLAGS = $(webkit_tests_ldflags)
589
590 Programs_unittests_testloading_SOURCES = WebKit/gtk/tests/testloading.c
591 Programs_unittests_testloading_CFLAGS = $(webkit_tests_cflags)
592 Programs_unittests_testloading_LDADD = $(webkit_tests_ldadd)
593 Programs_unittests_testloading_LDFLAGS = $(webkit_tests_ldflags)
594
595 Programs_unittests_testmimehandling_SOURCES = WebKit/gtk/tests/testmimehandling.c WebKit/gtk/tests/test_utils.c
596 Programs_unittests_testmimehandling_CFLAGS = $(webkit_tests_cflags)
597 Programs_unittests_testmimehandling_LDADD = $(webkit_tests_ldadd)
598 Programs_unittests_testmimehandling_LDFLAGS = $(webkit_tests_ldflags)
599
600 Programs_unittests_testnetworkrequest_SOURCES = WebKit/gtk/tests/testnetworkrequest.c
601 Programs_unittests_testnetworkrequest_CFLAGS = $(webkit_tests_cflags)
602 Programs_unittests_testnetworkrequest_LDADD = $(webkit_tests_ldadd)
603 Programs_unittests_testnetworkrequest_LDFLAGS = $(webkit_tests_ldflags)
604
605 Programs_unittests_testnetworkresponse_SOURCES = WebKit/gtk/tests/testnetworkresponse.c
606 Programs_unittests_testnetworkresponse_CFLAGS = $(webkit_tests_cflags)
607 Programs_unittests_testnetworkresponse_LDADD = $(webkit_tests_ldadd)
608 Programs_unittests_testnetworkresponse_LDFLAGS = $(webkit_tests_ldflags)
609
610 Programs_unittests_testwebframe_SOURCES = WebKit/gtk/tests/testwebframe.c
611 Programs_unittests_testwebframe_CFLAGS = $(webkit_tests_cflags)
612 Programs_unittests_testwebframe_LDADD = $(webkit_tests_ldadd)
613 Programs_unittests_testwebframe_LDFLAGS = $(webkit_tests_ldflags)
614
615 Programs_unittests_testwebbackforwardlist_SOURCES = WebKit/gtk/tests/testwebbackforwardlist.c
616 Programs_unittests_testwebbackforwardlist_CFLAGS = $(webkit_tests_cflags)
617 Programs_unittests_testwebbackforwardlist_LDADD = $(webkit_tests_ldadd)
618 Programs_unittests_testwebbackforwardlist_LDFLAGS = $(webkit_tests_ldflags)
619
620 Programs_unittests_testwebhistoryitem_SOURCES = WebKit/gtk/tests/testwebhistoryitem.c
621 Programs_unittests_testwebhistoryitem_CFLAGS = $(webkit_tests_cflags)
622 Programs_unittests_testwebhistoryitem_LDADD = $(webkit_tests_ldadd)
623 Programs_unittests_testwebhistoryitem_LDFLAGS = $(webkit_tests_ldflags)
624
625 Programs_unittests_testwindow_SOURCES = WebKit/gtk/tests/testwindow.c
626 Programs_unittests_testwindow_CFLAGS = $(webkit_tests_cflags)
627 Programs_unittests_testwindow_LDADD = $(webkit_tests_ldadd)
628 Programs_unittests_testwindow_LDFLAGS = $(webkit_tests_ldflags)
629
630 Programs_unittests_testdownload_SOURCES = WebKit/gtk/tests/testdownload.c
631 Programs_unittests_testdownload_CFLAGS = $(webkit_tests_cflags)
632 Programs_unittests_testdownload_LDADD = $(webkit_tests_ldadd)
633 Programs_unittests_testdownload_LDFLAGS = $(webkit_tests_ldflags)
634
635 Programs_unittests_testatk_SOURCES = WebKit/gtk/tests/testatk.c
636 Programs_unittests_testatk_CFLAGS = $(webkit_tests_cflags)
637 Programs_unittests_testatk_LDADD = $(webkit_tests_ldadd)
638 Programs_unittests_testatk_LDFLAGS = $(webkit_tests_ldflags)
639
640 Programs_unittests_testwebsettings_SOURCES = WebKit/gtk/tests/testwebsettings.c
641 Programs_unittests_testwebsettings_CFLAGS = $(webkit_tests_cflags)
642 Programs_unittests_testwebsettings_LDADD = $(webkit_tests_ldadd)
643 Programs_unittests_testwebsettings_LDFLAGS = $(webkit_tests_ldflags)
644
645 Programs_unittests_testwebresource_SOURCES = WebKit/gtk/tests/testwebresource.c
646 Programs_unittests_testwebresource_CFLAGS = $(webkit_tests_cflags)
647 Programs_unittests_testwebresource_LDADD = $(webkit_tests_ldadd)
648
649 Programs_unittests_testwebdatasource_SOURCES = WebKit/gtk/tests/testwebdatasource.c
650 Programs_unittests_testwebdatasource_CFLAGS = $(webkit_tests_cflags)
651 Programs_unittests_testwebdatasource_LDADD = $(webkit_tests_ldadd)
652
653 Programs_unittests_testwebview_SOURCES = WebKit/gtk/tests/testwebview.c WebKit/gtk/tests/test_utils.c
654 Programs_unittests_testwebview_CFLAGS = $(webkit_tests_cflags)
655 Programs_unittests_testwebview_LDADD = $(webkit_tests_ldadd)
656 Programs_unittests_testwebview_LDFLAGS = $(webkit_tests_ldflags)
657
658 Programs_unittests_testhittestresult_SOURCES = WebKit/gtk/tests/testhittestresult.c
659 Programs_unittests_testhittestresult_CFLAGS = $(webkit_tests_cflags)
660 Programs_unittests_testhittestresult_LDADD = $(webkit_tests_ldadd)
661
662 Programs_unittests_testkeyevents_SOURCES = WebKit/gtk/tests/testkeyevents.c
663 Programs_unittests_testkeyevents_CFLAGS = $(webkit_tests_cflags)
664 Programs_unittests_testkeyevents_LDADD = $(webkit_tests_ldadd)
665 Programs_unittests_testkeyevents_LDFLAGS = $(webkit_tests_ldflags)
666
667 # Autogenerated sources
668 BUILT_SOURCES += \
669         $(javascriptcore_built_sources) \
670         $(javascriptcore_built_nosources) \
671         $(webcore_built_sources) \
672         $(webcore_built_nosources) \
673         $(webkitgtk_built_sources) \
674         $(webkitgtk_built_nosources)
675
676 # Project-wide clean rules
677 # Files that will be cleaned
678 CLEANFILES += \
679         $(BUILT_SOURCES) \
680         $(webkitgtk_cleanfiles)
681
682 DISTCLEANFILES += \
683         $(CLEANFILES) \
684         $(builddir)/doltcompile \
685         $(builddir)/doltlibtool
686
687 MAINTAINERCLEANFILES += \
688         $(CLEANFILES) \
689         $(builddir)/doltcompile \
690         $(builddir)/doltlibtool \
691         $(srcdir)/aconfig.h.in \
692         $(srcdir)/autotools/config.* \
693         $(srcdir)/autotools/compile \
694         $(srcdir)/autotools/depcomp \
695         $(srcdir)/autotools/install-sh \
696         $(srcdir)/autotools/missing \
697         $(srcdir)/configure \
698         $(srcdir)/GNUmakefile.in \
699         $(srcdir)/INSTALL \
700         $(srcdir)/README \
701         $(top_builddir)/config.*
702
703 # Older automake versions (1.7) place Plo files in a different place so we need
704 # to create the output directory manually.
705 all-local: stamp-po
706         $(mkdir_p) $(top_builddir)/$(DEPDIR)/DerivedSources
707
708 # remove built sources and program directories
709 clean-local:
710         -rm -rf $(GENPROGRAMS)
711
712 maintainer-clean-local: distclean-local
713
714 distclean-local:
715         -rm -rf $(GENSOURCES) $(GENPROGRAMS)
716
717 install-data-local: po-install-data-local
718
719 installdirs-data-local: po-installdirs-data-local
720
721 uninstall-local: po-uninstall-local
722
723 # Run all tests in cwd
724 # FIXME: we should run this under xvfb
725 test: $(TEST_PROGS)
726         $(GTESTER) --verbose $(TEST_PROGS);
727
728 # test-report: run tests in cwd and generate report
729 # full-report: run tests in cwd with -m perf and -m slow and generate report
730 # perf-report: run tests in cwd with -m perf and generate report
731 test-report full-report perf-report: $(TEST_PROGS)
732         @ case $@ in \
733           test-report) test_options="-k";; \
734           full-report) test_options="-k -m=perf";; \
735           perf-report) test_options="-k -m=perf -m=slow";; \
736           esac ; \
737           $(GTESTER) --verbose $$test_options -o test-report.xml $(TEST_PROGS); \
738           $(GTESTER_REPORT) test-report.xml > test-report.html ;
739
740 .PHONY: test test-report perf-report full-report
741 check-local: test