blob: d766a9e9cd47305488aa65a45a2d156b62299313 [file] [log] [blame]
alp@webkit.orgf93619a2007-12-30 03:33:44 +00001# 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
alp@webkit.orgf93619a2007-12-30 03:33:44 +00008# _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
alp@webkit.orgf1dbca62008-06-02 16:36:32 +000016# 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.
alp@webkit.orgf93619a2007-12-30 03:33:44 +000019#
20# Global Variables
21#
22# global_cppflags = CPPFLAGS that apply to JSC, WebCore, and to any
23# specific port
mrowe@apple.com84cdb082008-02-05 03:25:59 +000024# global_cflags = CFLAGS that apply to JSC, WebCore, and to
alp@webkit.orgf93619a2007-12-30 03:33:44 +000025# any specific port
mrowe@apple.com84cdb082008-02-05 03:25:59 +000026# global_cxxflags = CXXFLAGS that apply to JSC, WebCore, and to any
27# specific port
alp@webkit.org278f1252007-12-27 06:05:21 +000028
29srcdir = @srcdir@
30VPATH = @srcdir@
31
32# Directory for autogenerated sources
33GENSOURCES := $(top_builddir)/DerivedSources
alp@webkit.orgc04fee22008-04-19 05:16:00 +000034GENPROGRAMS := $(top_builddir)/Programs
alp@webkit.org278f1252007-12-27 06:05:21 +000035
36# Script for creating hash tables
alp@webkit.org4c29a2f2008-11-06 08:58:53 +000037CREATE_HASH_TABLE = $(srcdir)/JavaScriptCore/create_hash_table
alp@webkit.org278f1252007-12-27 06:05:21 +000038
jmalonzo@webkit.orgc9b4de42009-05-18 11:30:53 +000039# Programs to run the WebKitGtk unit tests
40GTESTER = gtester
41GTESTER_REPORT = gtester-report
42
alp@webkit.org278f1252007-12-27 06:05:21 +000043# Libraries and support components
alp@webkit.org643f3ef2008-06-15 11:46:18 +000044bin_PROGRAMS :=
alp@webkit.org278f1252007-12-27 06:05:21 +000045noinst_PROGRAMS :=
alp@webkit.org9388fc82008-08-10 18:21:21 +000046noinst_HEADERS :=
alp@webkit.org278f1252007-12-27 06:05:21 +000047lib_LIBRARIES :=
alp@webkit.org278f1252007-12-27 06:05:21 +000048IDL_BINDINGS :=
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +000049TEST_PROGS :=
kov@webkit.org774c23b2009-04-06 19:39:14 +000050POFILES :=
kov@webkit.org774c23b2009-04-06 19:39:14 +000051MOFILES :=
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +000052javascriptcore_h_api :=
53javascriptcore_cppflags:=
54javascriptcore_sources :=
55javascriptcore_built_sources :=
56javascriptcore_built_nosources :=
57javascriptcore_dist :=
58webcore_cppflags :=
59webcore_sources :=
60webcore_libadd :=
61webcore_built_sources :=
62webcore_built_nosources :=
63webcore_dist :=
64webcoregtk_cppflags :=
65webcoregtk_sources :=
66webkitgtk_h_api :=
67webkitgtk_sources :=
68webkitgtk_cppflags :=
69webkitgtk_built_sources :=
70webkitgtk_built_nosources :=
71webkitgtk_cleanfiles :=
alp@webkit.org040ad8b2008-02-04 11:00:43 +000072global_cppflags :=
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +000073global_cflags :=
74global_cxxflags :=
75corekit_cflags :=
76corekit_cppflags :=
alp@webkit.org278f1252007-12-27 06:05:21 +000077
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +000078# CFLAGS/CXXFLAGS used by WebCore and WebKit
79#
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +000080# gtk+.pc already include glib, cairo, freetype and pango CFLAGS
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +000081# Don't include them for now to reduce the noise when compiling
82# $(GLIB_CFLAGS) $(CAIRO_CFLAGS) $(PANGO_CFLAGS) $(FREETYPE_CFLAGS)
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +000083corekit_cflags += \
84 -fno-strict-aliasing \
85 $(COVERAGE_CFLAGS) \
86 $(ENCHANT_CFLAGS) \
87 $(GEOCLUE_CFLAGS) \
88 $(GLIB_CFLAGS) \
89 $(GNOMEKEYRING_CFLAGS) \
90 $(GSTREAMER_CFLAGS) \
91 $(GTK_CFLAGS) \
92 $(HILDON_CFLAGS) \
93 $(LIBSOUP_CFLAGS) \
94 $(LIBXML_CFLAGS) \
95 $(LIBXSLT_CFLAGS) \
96 $(SQLITE3_CFLAGS) \
97 $(UNICODE_CFLAGS) \
98 $(XT_CFLAGS)
99
100# When building webcore/webkit, we want WebCore/config.h and NOT
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000101# JavaScriptCore/config.h, hence, it's important that WebCore/ should come first
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000102# before JavaScriptCore in the include path.
103corekit_cppflags += \
104 $(global_cppflags) \
105 $(webcore_cppflags) \
106 $(webcoregtk_cppflags) \
107 $(javascriptcore_cppflags)
108
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000109if TARGET_X11
110corekit_cppflags += -DXP_UNIX
111endif
alp@webkit.orgd28cae02008-03-10 00:49:15 +0000112
alp@webkit.org278f1252007-12-27 06:05:21 +0000113# Default compiler flags
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000114global_cflags += \
alp@webkit.org278f1252007-12-27 06:05:21 +0000115 -Wall -W -Wcast-align -Wchar-subscripts -Wreturn-type \
116 -Wformat -Wformat-security -Wno-format-y2k -Wundef \
117 -Wmissing-format-attribute -Wpointer-arith -Wwrite-strings \
alp@webkit.org491d9092008-11-03 17:27:55 +0000118 -Wno-unused-parameter -Wno-parentheses \
119 -fno-exceptions
mrowe@apple.com84cdb082008-02-05 03:25:59 +0000120
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000121global_cxxflags += \
122 $(global_cflags) \
alp@webkit.org491d9092008-11-03 17:27:55 +0000123 $(SYMBOL_VISIBILITY_INLINES) \
124 -fno-rtti
alp@webkit.org278f1252007-12-27 06:05:21 +0000125
alp@webkit.org15ef3c42008-06-03 00:30:19 +0000126# -no-undefined required for building DLLs on Windows
127# It breaks the build on other platforms, so we use it conditionally
128if OS_WIN32
xan@webkit.org0a818012009-05-13 13:49:06 +0000129no_undefined = -no-undefined
alp@webkit.org15ef3c42008-06-03 00:30:19 +0000130endif
131
jmalonzo@webkit.orga897fea2008-09-24 07:42:51 +0000132if OS_GNU
xan@webkit.org0a818012009-05-13 13:49:06 +0000133version_script = -Wl,--version-script,$(srcdir)/autotools/symbols.filter
jmalonzo@webkit.orga897fea2008-09-24 07:42:51 +0000134endif
135
alp@webkit.org36d65492008-01-13 07:33:53 +0000136# Shared libraries
137lib_LTLIBRARIES = \
alp@webkit.org66551a12008-03-02 19:51:26 +0000138 libwebkit-1.0.la
alp@webkit.org36d65492008-01-13 07:33:53 +0000139
140# Convenience libraries
141noinst_LTLIBRARIES = \
alp@webkit.org66551a12008-03-02 19:51:26 +0000142 libJavaScriptCore.la \
143 libWebCore.la
alp@webkit.org278f1252007-12-27 06:05:21 +0000144
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000145# JavaScriptCore
zecke@webkit.org5d487372008-03-21 18:21:25 +0000146javascriptcore_cppflags += \
zecke@webkit.org5d487372008-03-21 18:21:25 +0000147 -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
cwzwarich@webkit.orgb77ab3a2008-11-07 07:41:18 +0000148 -I$(srcdir)/JavaScriptCore/parser \
zecke@webkit.org5d487372008-03-21 18:21:25 +0000149 -I$(srcdir)/JavaScriptCore/wtf \
zecke@webkit.org5d487372008-03-21 18:21:25 +0000150 -I$(top_builddir)/DerivedSources
151
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000152nodist_EXTRA_libJavaScriptCore_la_SOURCES = \
alp@webkit.org81514942008-04-23 03:14:26 +0000153 $(javascriptcore_built_nosources)
154
155nodist_libJavaScriptCore_la_SOURCES = \
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000156 $(javascriptcore_built_sources)
157
alp@webkit.org66551a12008-03-02 19:51:26 +0000158libJavaScriptCore_ladir = $(prefix)/include/webkit-1.0/JavaScriptCore
alp@webkit.org36d65492008-01-13 07:33:53 +0000159libJavaScriptCore_la_HEADERS = $(javascriptcore_h_api)
alp@webkit.org278f1252007-12-27 06:05:21 +0000160
alp@webkit.org36d65492008-01-13 07:33:53 +0000161libJavaScriptCore_la_SOURCES = \
alp@webkit.org278f1252007-12-27 06:05:21 +0000162 $(javascriptcore_sources)
163
xan@webkit.org0a818012009-05-13 13:49:06 +0000164libJavaScriptCore_la_LIBADD = \
165 $(UNICODE_LIBS) \
166 $(GLIB_LIBS) \
167 -lpthread
168
darin@apple.com47e2c232008-02-24 05:42:29 +0000169libJavaScriptCore_la_CXXFLAGS = \
pewtermoose@webkit.org7a953d92008-02-24 07:07:03 +0000170 $(global_cxxflags) \
alp@webkit.org139345a2008-09-20 06:34:35 +0000171 $(libJavaScriptCore_la_CFLAGS)
alp@webkit.org278f1252007-12-27 06:05:21 +0000172
darin@apple.com47e2c232008-02-24 05:42:29 +0000173libJavaScriptCore_la_CFLAGS = \
alp@webkit.org2d181c52008-06-08 16:10:16 +0000174 -fstrict-aliasing \
175 -O3 \
pewtermoose@webkit.org7a953d92008-02-24 07:07:03 +0000176 $(global_cflags) \
jmalonzo@webkit.org06d65c102009-01-31 09:36:45 +0000177 $(GLIB_CFLAGS) \
alp@webkit.org2d181c52008-06-08 16:10:16 +0000178 $(UNICODE_CFLAGS)
alp@webkit.org278f1252007-12-27 06:05:21 +0000179
alp@webkit.orgf49bd1e2008-01-21 23:06:23 +0000180libJavaScriptCore_la_CPPFLAGS = \
181 $(global_cppflags) \
alp@webkit.orgd28cae02008-03-10 00:49:15 +0000182 $(javascriptcore_cppflags)
alp@webkit.org278f1252007-12-27 06:05:21 +0000183
xan@webkit.org0a818012009-05-13 13:49:06 +0000184# WebCore
alp@webkit.org76e7f9a2008-10-08 00:42:37 +0000185nodist_EXTRA_libWebCore_la_SOURCES = \
186 $(webcore_built_nosources)
187
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000188nodist_libWebCore_la_SOURCES = \
189 $(webcore_built_sources)
alp@webkit.org278f1252007-12-27 06:05:21 +0000190
alp@webkit.org66551a12008-03-02 19:51:26 +0000191libWebCore_la_SOURCES = \
alp@webkit.orgf1dbca62008-06-02 16:36:32 +0000192 $(webcore_sources) \
alp@webkit.orgf1dbca62008-06-02 16:36:32 +0000193 $(webcoregtk_sources)
alp@webkit.org278f1252007-12-27 06:05:21 +0000194
alp@webkit.org66551a12008-03-02 19:51:26 +0000195libWebCore_la_CXXFLAGS = \
mrowe@apple.com84cdb082008-02-05 03:25:59 +0000196 $(global_cxxflags) \
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000197 $(corekit_cflags)
alp@webkit.org278f1252007-12-27 06:05:21 +0000198
alp@webkit.org66551a12008-03-02 19:51:26 +0000199libWebCore_la_CFLAGS = \
alp@webkit.org278f1252007-12-27 06:05:21 +0000200 $(global_cflags) \
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000201 $(corekit_cflags)
alp@webkit.org278f1252007-12-27 06:05:21 +0000202
xan@webkit.org0a818012009-05-13 13:49:06 +0000203libWebCore_la_CPPFLAGS = \
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000204 $(corekit_cppflags)
xan@webkit.org0a818012009-05-13 13:49:06 +0000205
xan@webkit.org0a818012009-05-13 13:49:06 +0000206# WebKit
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000207nodist_libwebkit_1_0_la_SOURCES = \
208 $(webkitgtk_built_sources)
209
alp@webkit.org66551a12008-03-02 19:51:26 +0000210libwebkit_1_0_ladir = $(prefix)/include/webkit-1.0/webkit
jmalonzo@webkit.orgd18157182008-06-18 20:04:18 +0000211libwebkit_1_0_la_HEADERS = \
212 $(webkitgtk_h_api) \
213 WebKit/gtk/webkit/webkitenumtypes.h
alp@webkit.org66551a12008-03-02 19:51:26 +0000214
215libwebkit_1_0_la_SOURCES = \
alp@webkit.org66551a12008-03-02 19:51:26 +0000216 $(webkitgtk_sources)
217
218libwebkit_1_0_la_CXXFLAGS = \
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000219 $(global_cxxflags) \
220 $(corekit_cflags)
alp@webkit.org66551a12008-03-02 19:51:26 +0000221
222libwebkit_1_0_la_CFLAGS = \
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000223 $(global_cflags) \
224 $(corekit_cflags)
alp@webkit.org66551a12008-03-02 19:51:26 +0000225
226libwebkit_1_0_la_CPPFLAGS = \
jmalonzo@webkit.orga3327562009-05-18 11:30:06 +0000227 $(corekit_cppflags) \
228 $(webkitgtk_cppflags) \
229 $(HILDON_CPPFLAGS)
alp@webkit.org66551a12008-03-02 19:51:26 +0000230
xan@webkit.org0a818012009-05-13 13:49:06 +0000231libwebkit_1_0_la_LDFLAGS = \
alp@webkit.org15ef3c42008-06-03 00:30:19 +0000232 -version-info @LIBWEBKITGTK_VERSION@ \
jmalonzo@webkit.orga897fea2008-09-24 07:42:51 +0000233 $(version_script) \
alp@webkit.org15ef3c42008-06-03 00:30:19 +0000234 $(no_undefined)
alp@webkit.org278f1252007-12-27 06:05:21 +0000235
xan@webkit.org0a818012009-05-13 13:49:06 +0000236libwebkit_1_0_la_LIBADD = \
jmalonzo@webkit.org290fe612009-05-23 22:20:31 +0000237 -lpthread \
238 libJavaScriptCore.la \
xan@webkit.org0a818012009-05-13 13:49:06 +0000239 libWebCore.la \
jmalonzo@webkit.org290fe612009-05-23 22:20:31 +0000240 libWebCoreJS.la \
241 $(webcore_ldflags) \
242 $(CAIRO_LIBS) \
243 $(COVERAGE_LDFLAGS) \
xan@webkit.org0a818012009-05-13 13:49:06 +0000244 $(ENCHANT_LIBS) \
jmalonzo@webkit.org290fe612009-05-23 22:20:31 +0000245 $(FREETYPE_LIBS) \
246 $(GEOCLUE_LIBS) \
247 $(GLIB_LIBS) \
248 $(GNOMEKEYRING_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)
xan@webkit.org0a818012009-05-13 13:49:06 +0000261
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000262#
alp@webkit.org278f1252007-12-27 06:05:21 +0000263# Extra checks and flags
alp@webkit.org278f1252007-12-27 06:05:21 +0000264global_cppflags += \
alp@webkit.orgf1dbca62008-06-02 16:36:32 +0000265 -DBUILDING_CAIRO__=1 \
alp@webkit.org278f1252007-12-27 06:05:21 +0000266 -DBUILDING_GTK__=1 \
kov@webkit.orgeba9e742009-05-22 18:06:51 +0000267 -DWTF_CHANGES
268
269if USE_ICU_UNICODE
270global_cppflags += \
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000271 -DWTF_USE_ICU_UNICODE=1
kov@webkit.orgeba9e742009-05-22 18:06:51 +0000272endif
273
274if USE_GLIB_UNICODE
275# https://bugs.webkit.org/show_bug.cgi?id=15914
276# In patch 1/4 we are compiling a hybrid version of GLib WTF Unicode
277# functionality mixed with ICU-based text codecs and TextBreakIterator.
278# For the transition, introducing an interim HYBRID macro.
279# This macro is required for compiling WTF with GLib Unicode backend,
280# but at the same time keeping ICU dependency for codecs and break iterator.
281# It will be removed with patch 3/4 of the above bug.
282global_cppflags += \
283 -DWTF_USE_GLIB_UNICODE=1 \
284 -DWTF_USE_GLIB_ICU_UNICODE_HYBRID=1
285endif
alp@webkit.org278f1252007-12-27 06:05:21 +0000286
alp@webkit.org27f95c42008-01-12 07:40:52 +0000287if !ENABLE_FAST_MALLOC
288global_cppflags += \
289 -DUSE_SYSTEM_MALLOC
290endif
291
alp@webkit.org278f1252007-12-27 06:05:21 +0000292if !ENABLE_DEBUG
293global_cppflags += -DNDEBUG
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000294global_cflags += $(SYMBOL_VISIBILITY)
295
alp@webkit.org040ad8b2008-02-04 11:00:43 +0000296else
alp@webkit.orgf1dbca62008-06-02 16:36:32 +0000297webcoregtk_cppflags += \
alp@webkit.org11a31a72007-12-27 23:14:27 +0000298 -DG_DISABLE_DEPRECATED \
299 -DGDK_PIXBUF_DISABLE_DEPRECATED \
300 -DGDK_DISABLE_DEPRECATED \
301 -DGTK_DISABLE_DEPRECATED \
zecke@webkit.org48bc6f42008-01-03 02:07:28 +0000302 -DPANGO_DISABLE_DEPRECATED
303
304# Might be useful in the future
305# -DGDK_MULTIHEAD_SAFE \
306# -DGTK_MULTIHEAD_SAFE
alp@webkit.org278f1252007-12-27 06:05:21 +0000307endif
308
alp@webkit.org278f1252007-12-27 06:05:21 +0000309if ENABLE_COVERAGE
310global_cppflags += \
311 -DGCC_GENERATE_TEST_COVERAGE_FILES \
312 -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS
313endif
314
alp@webkit.org278f1252007-12-27 06:05:21 +0000315webkitgtk_h_api += \
alp@webkit.org94c06552008-01-31 23:51:53 +0000316 WebKit/gtk/webkit/webkit.h \
317 WebKit/gtk/webkit/webkitdefines.h \
kov@webkit.org7d05c792009-03-03 19:48:22 +0000318 WebKit/gtk/webkit/webkitdownload.h \
jmalonzo@webkit.org5f5c6c82009-04-25 09:19:42 +0000319 WebKit/gtk/webkit/webkiterror.h \
alp@webkit.org94c06552008-01-31 23:51:53 +0000320 WebKit/gtk/webkit/webkitnetworkrequest.h \
xan@webkit.orgaa458732009-03-04 20:57:38 +0000321 WebKit/gtk/webkit/webkitsoupauthdialog.h \
christian@webkit.org56f00692008-06-05 22:50:40 +0000322 WebKit/gtk/webkit/webkitversion.h \
alp@webkit.org94c06552008-01-31 23:51:53 +0000323 WebKit/gtk/webkit/webkitwebbackforwardlist.h \
324 WebKit/gtk/webkit/webkitwebframe.h \
325 WebKit/gtk/webkit/webkitwebhistoryitem.h \
zecke@webkit.orgbcca41d2008-10-29 22:39:18 +0000326 WebKit/gtk/webkit/webkitwebinspector.h \
zecke@webkit.org2d40b852008-12-20 03:18:31 +0000327 WebKit/gtk/webkit/webkitwebnavigationaction.h \
328 WebKit/gtk/webkit/webkitwebpolicydecision.h \
alp@webkit.org94c06552008-01-31 23:51:53 +0000329 WebKit/gtk/webkit/webkitwebsettings.h \
zecke@webkit.orgdfb38682008-11-29 00:20:56 +0000330 WebKit/gtk/webkit/webkitwebwindowfeatures.h \
alp@webkit.org040ad8b2008-02-04 11:00:43 +0000331 WebKit/gtk/webkit/webkitwebview.h
alp@webkit.org278f1252007-12-27 06:05:21 +0000332
333webkitgtk_built_sources += \
jmalonzo@webkit.orgd18157182008-06-18 20:04:18 +0000334 DerivedSources/webkitenumtypes.cpp \
alp@webkit.org9388fc82008-08-10 18:21:21 +0000335 DerivedSources/webkitmarshal.cpp \
336 DerivedSources/webkitmarshal.h \
jmalonzo@webkit.orgd18157182008-06-18 20:04:18 +0000337 WebKit/gtk/webkit/webkitenumtypes.h
alp@webkit.org278f1252007-12-27 06:05:21 +0000338
alp@webkit.org278f1252007-12-27 06:05:21 +0000339webkitgtk_sources += \
alp@webkit.org9388fc82008-08-10 18:21:21 +0000340 WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
341 WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \
342 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
343 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \
344 WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
345 WebKit/gtk/WebCoreSupport/DragClientGtk.h \
346 WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
347 WebKit/gtk/WebCoreSupport/EditorClientGtk.h \
348 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
349 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \
350 WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
351 WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \
352 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp \
353 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h \
jmalonzo@webkit.org5f5c6c82009-04-25 09:19:42 +0000354 WebKit/gtk/webkit/webkitdownload.cpp \
355 WebKit/gtk/webkit/webkiterror.cpp \
alp@webkit.org94c06552008-01-31 23:51:53 +0000356 WebKit/gtk/webkit/webkitnetworkrequest.cpp \
357 WebKit/gtk/webkit/webkitprivate.cpp \
alp@webkit.org9388fc82008-08-10 18:21:21 +0000358 WebKit/gtk/webkit/webkitprivate.h \
xan@webkit.orgaa458732009-03-04 20:57:38 +0000359 WebKit/gtk/webkit/webkitsoupauthdialog.c \
christian@webkit.org56f00692008-06-05 22:50:40 +0000360 WebKit/gtk/webkit/webkitversion.cpp \
alp@webkit.org94c06552008-01-31 23:51:53 +0000361 WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \
362 WebKit/gtk/webkit/webkitwebframe.cpp \
363 WebKit/gtk/webkit/webkitwebhistoryitem.cpp \
zecke@webkit.orgbcca41d2008-10-29 22:39:18 +0000364 WebKit/gtk/webkit/webkitwebinspector.cpp \
zecke@webkit.org2d40b852008-12-20 03:18:31 +0000365 WebKit/gtk/webkit/webkitwebnavigationaction.cpp \
366 WebKit/gtk/webkit/webkitwebpolicydecision.cpp \
alp@webkit.org94c06552008-01-31 23:51:53 +0000367 WebKit/gtk/webkit/webkitwebsettings.cpp \
zecke@webkit.orgdfb38682008-11-29 00:20:56 +0000368 WebKit/gtk/webkit/webkitwebview.cpp \
369 WebKit/gtk/webkit/webkitwebwindowfeatures.cpp
alp@webkit.org278f1252007-12-27 06:05:21 +0000370
alp@webkit.org7c869902008-06-08 19:04:23 +0000371webkitgtk_cppflags += \
372 -DBUILDING_WEBKIT \
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000373 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
374 -DDATA_DIR=\"${datadir}\" \
alp@webkit.org7c869902008-06-08 19:04:23 +0000375 -I$(srcdir)/WebKit/gtk \
376 -I$(srcdir)/WebKit/gtk/WebCoreSupport \
377 -I$(srcdir)/WebKit/gtk/webkit \
378 -I$(top_builddir)/WebKit/gtk/webkit
379
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000380if USE_GNOMEKEYRING
381webkitgtk_cppflags += \
382 -DWTF_USE_GNOMEKEYRING=1
383endif
384
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000385webkitgtk_cleanfiles += \
kov@webkit.org53600a92009-05-28 17:48:25 +0000386 $(top_builddir)/WebKit/gtk/docs/version.xml \
387 $(top_builddir)/WebKit/gtk/docs/GNUmakefile \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000388 $(top_builddir)/Programs/GtkLauncher \
alp@webkit.orge359c842008-11-04 04:25:52 +0000389 $(top_builddir)/WebKit/gtk/webkit-1.0.pc \
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000390 $(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h \
391 $(top_builddir)/WebKit/gtk/webkit/webkitversion.h
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000392
alp@webkit.org278f1252007-12-27 06:05:21 +0000393pkgconfigdir = $(libdir)/pkgconfig
alp@webkit.org12057322008-02-01 07:01:18 +0000394pkgconfig_DATA = WebKit/gtk/webkit-1.0.pc
alp@webkit.org278f1252007-12-27 06:05:21 +0000395
jmalonzo@webkit.orgb5895212008-06-18 17:16:12 +0000396stamp_files := \
christian@webkit.orge0a030f2008-07-30 18:17:24 +0000397 stamp-webkitmarshal.cpp \
398 stamp-webkitmarshal.h \
jmalonzo@webkit.orgd18157182008-06-18 20:04:18 +0000399 stamp-webkitenumtypes.cpp \
400 stamp-webkitenumtypes.h
401
christian@webkit.orge0a030f2008-07-30 18:17:24 +0000402WEBKIT_MARSHAL = $(GENSOURCES)/webkitmarshal
zecke@webkit.orgfa530382009-02-26 16:48:58 +0000403WEBKIT_MARSHAL_LIST = $(top_srcdir)/WebKit/gtk/webkitmarshal.list
christian@webkit.orge0a030f2008-07-30 18:17:24 +0000404
405$(WEBKIT_MARSHAL).cpp: stamp-webkitmarshal.cpp
alp@webkit.org278f1252007-12-27 06:05:21 +0000406 @true
407
christian@webkit.orge0a030f2008-07-30 18:17:24 +0000408$(WEBKIT_MARSHAL).h: stamp-webkitmarshal.h
alp@webkit.org278f1252007-12-27 06:05:21 +0000409 @true
410
christian@webkit.orge0a030f2008-07-30 18:17:24 +0000411stamp-webkitmarshal.cpp: $(WEBKIT_MARSHAL_LIST)
alp@webkit.org278f1252007-12-27 06:05:21 +0000412 echo "extern \"C\" {" > $(WEBKIT_MARSHAL).cpp && \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000413 $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --body >> $(WEBKIT_MARSHAL).cpp && echo '}' >> $(WEBKIT_MARSHAL).cpp && \
alp@webkit.org278f1252007-12-27 06:05:21 +0000414 echo timestamp > $(@F)
415
christian@webkit.orge0a030f2008-07-30 18:17:24 +0000416stamp-webkitmarshal.h: $(WEBKIT_MARSHAL_LIST)
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000417 $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --header > $(WEBKIT_MARSHAL).h && \
alp@webkit.org278f1252007-12-27 06:05:21 +0000418 echo timestamp > $(@F)
419
jmalonzo@webkit.orgd18157182008-06-18 20:04:18 +0000420WebKit/gtk/webkit/webkitenumtypes.h: stamp-webkitenumtypes.h
421 @true
jmalonzo@webkit.org46fd3f42008-08-06 12:40:53 +0000422stamp-webkitenumtypes.h: $(webkitgtk_h_api) GNUmakefile
jmalonzo@webkit.orgd18157182008-06-18 20:04:18 +0000423 (cd $(srcdir) \
424 && glib-mkenums \
425 --fhead "#ifndef WEBKIT_ENUM_TYPES_H\n" \
426 --fhead "#define WEBKIT_ENUM_TYPES_H\n\n" \
427 --fhead "#include <glib-object.h>\n\n" \
428 --fhead "#include <webkit/webkitdefines.h>\n\n" \
429 --fhead "G_BEGIN_DECLS\n\n" \
430 --ftail "G_END_DECLS\n\n" \
431 --ftail "#endif\n" \
432 --fprod "#include <@filename@>\n\n" \
433 --eprod "#define WEBKIT_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n\n" \
434 --eprod "WEBKIT_API GType\n@enum_name@_get_type(void);\n\n" \
435 $(webkitgtk_h_api) | \
436 sed 's,WebKit/gtk/,,' | \
437 sed 's,web_kit,webkit,' | \
438 sed 's,WEBKIT_TYPE_KIT,WEBKIT_TYPE,' \
439 ) > xgen-gth \
440 && (cmp -s xgen-gth WebKit/gtk/webkit/webkitenumtypes.h || cp xgen-gth WebKit/gtk/webkit/webkitenumtypes.h) \
441 && rm -f xgen-gth \
442 && echo timestamp > $(@F)
443
jmalonzo@webkit.org46fd3f42008-08-06 12:40:53 +0000444DerivedSources/webkitenumtypes.cpp: $(webkitgtk_h_api) GNUmakefile
jmalonzo@webkit.orgd18157182008-06-18 20:04:18 +0000445 (cd $(srcdir) \
446 && glib-mkenums \
447 --fhead "#include <config.h>\n" \
448 --fhead "#include <glib-object.h>\n" \
449 --fhead "#include \"$(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h\"\n\n" \
450 --fhead "extern \"C\" {\n\n" \
451 --fprod "\n/* enumerations from \"@filename@\" */" \
452 --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
453 --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
454 --vtail " { 0, NULL, NULL }\n};\n\n" \
455 --vtail "GType @enum_name@_get_type(void)\n{\n" \
456 --vtail " static GType type = 0;\n\n" \
457 --vtail " if (!type)\n" \
458 --vtail " type = g_@type@_register_static(\"@EnumName@\", _@enum_name@_values);\n\n" \
459 --vtail " return type;\n}\n\n" \
460 --ftail "}\n" \
461 $(webkitgtk_h_api) | \
462 sed 's,web_kit,webkit,' \
463 ) > xgen-gtc \
464 && cp xgen-gtc $@ \
465 && rm -f xgen-gtc
466
alp@webkit.org9388fc82008-08-10 18:21:21 +0000467# Files that will be distributed
468EXTRA_DIST = \
kov@webkit.org1edd5ac2009-05-08 21:37:09 +0000469 $(srcdir)/gtk-doc.make \
alp@webkit.org2ab36952008-10-28 12:53:51 +0000470 WebKit/LICENSE \
alp@webkit.org9388fc82008-08-10 18:21:21 +0000471 $(javascriptcore_dist) \
alp@webkit.org97d8c102008-08-29 05:09:39 +0000472 $(webcore_dist) \
kov@webkit.org9551eb62009-02-28 03:44:42 +0000473 $(srcdir)/autotools/symbols.filter \
kov@webkit.org485273b2009-03-02 14:56:41 +0000474 $(srcdir)/WebKit/gtk/ChangeLog \
475 $(srcdir)/WebKit/gtk/NEWS \
kov@webkit.org166f8e5042009-04-01 16:37:52 +0000476 $(srcdir)/WebKit/gtk/webkitmarshal.list \
477 $(srcdir)/WebKit/gtk/docs/GNUmakefile.* \
478 $(srcdir)/WebKit/gtk/docs/webkitenvironment.xml \
479 $(srcdir)/WebKit/gtk/docs/webkitgtk-docs.sgml \
480 $(srcdir)/WebKit/gtk/docs/webkitgtk-sections.txt \
kov@webkit.org774c23b2009-04-06 19:39:14 +0000481 $(srcdir)/WebKit/gtk/docs/version.xml.in \
jmalonzo@webkit.org7ffddf152009-04-25 09:19:20 +0000482 $(srcdir)/WebKit/gtk/po/* \
483 $(srcdir)/WebKit/gtk/resources/*
484
485# extra resource files
486resourcesdir = ${datadir}/webkit-1.0/resources
487dist_resources_DATA = \
488 $(shell ls $(srcdir)/WebKit/gtk/resources/*.html)
489
490# END WEBKIT GTK+
alp@webkit.org278f1252007-12-27 06:05:21 +0000491
492# Files that will be cleaned
jmalonzo@webkit.org249f7ce2009-05-18 11:30:41 +0000493MAINTAINERCLEANFILES := $(stamp_files) $(BUILT_SOURCES) doltcompile doltlibtool
494DISTCLEANFILES := $(stamp_files) $(BUILT_SOURCES) doltcompile doltlibtool
495CLEANFILES := $(stamp_files) $(BUILT_SOURCES)
alp@webkit.org278f1252007-12-27 06:05:21 +0000496
497# Include module makefiles
498include JavaScriptCore/GNUmakefile.am
499include WebCore/GNUmakefile.am
500include WebKitTools/GNUmakefile.am
kov@webkit.org774c23b2009-04-06 19:39:14 +0000501include WebKit/gtk/po/GNUmakefile.am
alp@webkit.org278f1252007-12-27 06:05:21 +0000502
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000503# Build unit tests
504noinst_PROGRAMS += $(TEST_PROGS)
zecke@webkit.orgc31c5112008-12-07 19:16:17 +0000505
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000506webkit_tests_cflags = \
zecke@webkit.orgc31c5112008-12-07 19:16:17 +0000507 -fno-strict-aliasing \
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000508 -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
509 -I$(srcdir)/WebKit/gtk \
510 -I$(top_builddir)/WebKit/gtk \
zecke@webkit.orgc31c5112008-12-07 19:16:17 +0000511 $(global_cflags) \
512 $(GLIB_CFLAGS) \
christian@webkit.org3a74ebf2009-02-23 11:15:30 +0000513 $(GTK_CFLAGS) \
514 $(LIBSOUP_CFLAGS)
zecke@webkit.orgc31c5112008-12-07 19:16:17 +0000515
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000516webkit_tests_ldadd = \
zecke@webkit.orgc31c5112008-12-07 19:16:17 +0000517 libwebkit-1.0.la \
christian@webkit.org2c1a0db2009-02-19 21:41:25 +0000518 $(GTK_LIBS) \
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000519 $(GLIB_LIBS) \
520 $(LIBSOUP_LIBS)
521
jmalonzo@webkit.orgb6766c52009-05-18 11:30:25 +0000522webkit_tests_ldflags = \
523 -no-install \
524 -no-fast-install
525
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000526TEST_PROGS += Programs/unittests/testwebframe \
jmalonzo@webkit.orga4ae29c2009-03-20 20:23:12 +0000527 Programs/unittests/testwebbackforwardlist \
christian@webkit.org278d4cd2009-04-01 19:48:20 +0000528 Programs/unittests/testwebhistoryitem \
529 Programs/unittests/testdownload
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000530
531# Add additional tests here
532Programs_unittests_testwebframe_SOURCES = WebKit/gtk/tests/testwebframe.c
533Programs_unittests_testwebframe_CFLAGS = $(webkit_tests_cflags)
534Programs_unittests_testwebframe_LDADD = $(webkit_tests_ldadd)
jmalonzo@webkit.orgb6766c52009-05-18 11:30:25 +0000535Programs_unittests_testwebframe_LDFLAGS = $(webkit_tests_ldflags)
jmalonzo@webkit.org27bbbab2009-03-20 19:45:05 +0000536
537Programs_unittests_testwebbackforwardlist_SOURCES = WebKit/gtk/tests/testwebbackforwardlist.c
538Programs_unittests_testwebbackforwardlist_CFLAGS = $(webkit_tests_cflags)
539Programs_unittests_testwebbackforwardlist_LDADD = $(webkit_tests_ldadd)
jmalonzo@webkit.orgb6766c52009-05-18 11:30:25 +0000540Programs_unittests_testwebbackforwardlist_LDFLAGS = $(webkit_tests_ldflags)
zecke@webkit.orgc31c5112008-12-07 19:16:17 +0000541
jmalonzo@webkit.orga4ae29c2009-03-20 20:23:12 +0000542Programs_unittests_testwebhistoryitem_SOURCES = WebKit/gtk/tests/testwebhistoryitem.c
543Programs_unittests_testwebhistoryitem_CFLAGS = $(webkit_tests_cflags)
544Programs_unittests_testwebhistoryitem_LDADD = $(webkit_tests_ldadd)
jmalonzo@webkit.orgb6766c52009-05-18 11:30:25 +0000545Programs_unittests_testwebhistoryitem_LDFLAGS = $(webkit_tests_ldflags)
jmalonzo@webkit.orga4ae29c2009-03-20 20:23:12 +0000546
christian@webkit.org278d4cd2009-04-01 19:48:20 +0000547Programs_unittests_testdownload_SOURCES = WebKit/gtk/tests/testdownload.c
548Programs_unittests_testdownload_CFLAGS = $(webkit_tests_cflags)
549Programs_unittests_testdownload_LDADD = $(webkit_tests_ldadd)
jmalonzo@webkit.orgb6766c52009-05-18 11:30:25 +0000550Programs_unittests_testdownload_LDFLAGS = $(webkit_tests_ldflags)
jmalonzo@webkit.orga4ae29c2009-03-20 20:23:12 +0000551
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000552# Autogenerated sources
alp@webkit.orge1244662008-10-07 18:28:43 +0000553BUILT_SOURCES := \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000554 $(javascriptcore_built_sources) \
555 $(javascriptcore_built_nosources) \
556 $(webcore_built_sources) \
557 $(webcore_built_nosources) \
558 $(webkitgtk_built_sources) \
559 $(webkitgtk_built_nosources)
560
alp@webkit.org278f1252007-12-27 06:05:21 +0000561# Project-wide clean rules
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000562CLEANFILES += \
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000563 $(webkitgtk_cleanfiles)
alp@webkit.org278f1252007-12-27 06:05:21 +0000564
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000565MAINTAINERCLEANFILES += \
566 $(srcdir)/aconfig.h.in \
jmalonzo@webkit.org15d83302009-03-11 11:57:43 +0000567 $(srcdir)/autotools/config.* \
568 $(srcdir)/autotools/compile \
569 $(srcdir)/autotools/depcomp \
570 $(srcdir)/autotools/install-sh \
571 $(srcdir)/autotools/missing \
572 $(srcdir)/configure \
573 $(srcdir)/GNUmakefile.in \
574 $(srcdir)/INSTALL \
575 $(srcdir)/README \
576 $(top_builddir)/config.*
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000577
alp@webkit.org76e7f9a2008-10-08 00:42:37 +0000578# Older automake versions (1.7) place Plo files in a different place so we need
579# to create the output directory manually.
kov@webkit.org774c23b2009-04-06 19:39:14 +0000580all-local: stamp-po
581 $(mkdir_p) $(top_builddir)/$(DEPDIR)/DerivedSources
alp@webkit.org76e7f9a2008-10-08 00:42:37 +0000582
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000583# remove built sources and program directories
584clean-local:
jmalonzo@webkit.org15d83302009-03-11 11:57:43 +0000585 -rm -rf $(GENPROGRAMS)
586
xan@webkit.org233d51e2009-03-14 20:22:13 +0000587maintainer-clean-local: distclean-local
588
589distclean-local:
alp@webkit.orgc04fee22008-04-19 05:16:00 +0000590 -rm -rf $(GENSOURCES) $(GENPROGRAMS)
kov@webkit.org774c23b2009-04-06 19:39:14 +0000591
592install-data-local: po-install-data-local
593
594installdirs-data-local: po-installdirs-data-local
595
jmalonzo@webkit.org7ffddf152009-04-25 09:19:20 +0000596uninstall-local: po-uninstall-local
jmalonzo@webkit.orgc9b4de42009-05-18 11:30:53 +0000597
598# Run all tests in cwd
599# FIXME: we should run this under xvfb
600test: $(TEST_PROGS)
601 $(GTESTER) --verbose $(TEST_PROGS);
602
603# test-report: run tests in cwd and generate report
604# full-report: run tests in cwd with -m perf and -m slow and generate report
605# perf-report: run tests in cwd with -m perf and generate report
606test-report full-report perf-report: $(TEST_PROGS)
607 @ case $@ in \
608 test-report) test_options="-k";; \
609 full-report) test_options="-k -m=perf";; \
610 perf-report) test_options="-k -m=perf -m=slow";; \
611 esac ; \
612 $(GTESTER) --verbose $$test_options -o test-report.xml $(TEST_PROGS); \
613 $(GTESTER_REPORT) test-report.xml > test-report.html ;
614
615.PHONY: test test-report perf-report full-report
616check-local: test