1 # Top-level Makefile rule for automake
3 # Variable conventions:
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 # _headers = header files that will be part of the distribution
9 # _built_sources = files that will be autogenerated by the build system and
10 # will be part of the _SOURCES primary
11 # _built_nosources = files that are autogenerated but are not part of the
13 # _cleanfiles = files that will be removed by the clean target
15 # Sources, headers, flags, etc... should be added to the respective variables
16 # with the above suffix, e.g, webcore-specific sources should go to
17 # webcore_sources, gtk port-specific flags should go to webkitgtk_cppflags,
18 # etc... The only exceptions are the global variables. See Global Variables below.
22 # global_cppflags = CPPFLAGS that apply to JSC, WebCore, and to any
24 # global_cflags = CFLAGS that apply to JSC, WebCore, and to
26 # global_cxxflags = CXXFLAGS that apply to JSC, WebCore, and to any
32 # Directory for autogenerated sources
33 GENSOURCES := $(top_builddir)/DerivedSources
35 # Script for creating hash tables
36 CREATE_HASH_TABLE = $(srcdir)/JavaScriptCore/kjs/create_hash_table
38 # Libraries and support components
47 # Files that will be distributed
55 -DWTF_USE_ICU_UNICODE=1
57 # Default compiler flags
59 -Wall -W -Wcast-align -Wchar-subscripts -Wreturn-type \
60 -Wformat -Wformat-security -Wno-format-y2k -Wundef \
61 -Wmissing-format-attribute -Wpointer-arith -Wwrite-strings \
65 $(SYMBOL_VISIBILITY_INLINES)
80 # Convenience libraries
81 noinst_LTLIBRARIES = \
82 libJavaScriptCore.la \
87 javascriptcore_h_api :=
88 javascriptcore_cppflags:=
89 javascriptcore_sources :=
90 javascriptcore_built_sources :=
91 javascriptcore_built_nosources :=
93 javascriptcore_cppflags += \
94 -I$(srcdir)/JavaScriptCore \
95 -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
96 -I$(srcdir)/JavaScriptCore/wtf \
97 -I$(srcdir)/JavaScriptCore/kjs \
98 -I$(top_builddir)/DerivedSources
100 # The variables above are already included below so no need to touch
101 # these variables unless you really have to
102 libJavaScriptCore_ladir = $(prefix)/include/webkit-1.0/JavaScriptCore
103 libJavaScriptCore_la_HEADERS = $(javascriptcore_h_api)
105 libJavaScriptCore_la_SOURCES = \
106 $(javascriptcore_built_sources) \
107 $(javascriptcore_sources)
109 libJavaScriptCore_la_LIBADD = \
114 libJavaScriptCore_la_CXXFLAGS = \
117 $(GLOBALDEPS_CFLAGS) \
121 libJavaScriptCore_la_CFLAGS = \
123 $(GLOBALDEPS_CFLAGS) \
127 libJavaScriptCore_la_CPPFLAGS = \
129 $(javascriptcore_cppflags)
137 webcore_built_sources :=
138 webcore_built_nosources :=
140 webcore_cppflags += $(HILDON_CPPFLAGS)
146 webkitgtk_cppflags :=
147 webkitgtk_built_sources :=
148 webkitgtk_built_nosources :=
149 webkitgtk_cleanfiles :=
151 libWebCore_la_SOURCES = \
152 $(webcore_built_sources) \
156 libWebCore_la_CXXFLAGS = \
157 -fno-strict-aliasing \
160 $(GLOBALDEPS_CFLAGS) \
162 $(WEBKITDEPS_CFLAGS) \
166 $(GSTREAMER_CFLAGS) \
171 libWebCore_la_CFLAGS = \
172 -fno-strict-aliasing \
174 $(GLOBALDEPS_CFLAGS) \
176 $(WEBKITDEPS_CFLAGS) \
180 $(GSTREAMER_CFLAGS) \
185 libWebCore_la_CPPFLAGS = \
187 $(webcore_cppflags) \
188 $(javascriptcore_cppflags) \
189 $(webkitgtk_cppflags)
191 libWebCore_la_LIBADD = \
192 libJavaScriptCore.la \
206 libwebkit_1_0_ladir = $(prefix)/include/webkit-1.0/webkit
207 libwebkit_1_0_la_HEADERS = $(webkitgtk_h_api)
209 libwebkit_1_0_la_SOURCES = \
210 $(webkitgtk_built_sources) \
211 $(webkitgtk_headers) \
214 libwebkit_1_0_la_CXXFLAGS = \
215 $(libWebCore_la_CXXFLAGS)
217 libwebkit_1_0_la_CFLAGS = \
218 $(libWebCore_la_CFLAGS)
220 libwebkit_1_0_la_CPPFLAGS = \
221 $(libWebCore_la_CPPFLAGS)
223 libwebkit_1_0_la_LDFLAGS = \
224 $(COVERAGE_LDFLAGS) \
225 -version-info @LIBWEBKITGTK_VERSION@
227 libwebkit_1_0_la_LIBADD = \
231 # Extra checks and flags
236 if !ENABLE_FAST_MALLOC
242 global_cppflags += -DXP_UNIX
246 global_cppflags += -DNDEBUG
248 webkitgtk_cppflags += \
249 -DG_DISABLE_DEPRECATED \
250 -DGDK_PIXBUF_DISABLE_DEPRECATED \
251 -DGDK_DISABLE_DEPRECATED \
252 -DGTK_DISABLE_DEPRECATED \
253 -DPANGO_DISABLE_DEPRECATED
255 # Might be useful in the future
256 # -DGDK_MULTIHEAD_SAFE \
257 # -DGTK_MULTIHEAD_SAFE
261 global_cppflags += -DENABLE_DATABASE=0
264 if !ENABLE_ICONDATABASE
265 global_cppflags += -DENABLE_ICONDATABASE=0
270 -DGCC_GENERATE_TEST_COVERAGE_FILES \
271 -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS
275 webcore_libadd += -lgstinterfaces-0.10 -lgstvideo-0.10
278 webkitgtk_cppflags += \
279 -I$(top_builddir)/WebKit/gtk/webkit \
280 -DBUILDING_CAIRO__=1 \
284 WebKit/gtk/webkit/webkit.h \
285 WebKit/gtk/webkit/webkitdefines.h \
286 WebKit/gtk/webkit/webkitnetworkrequest.h \
287 WebKit/gtk/webkit/webkitwebbackforwardlist.h \
288 WebKit/gtk/webkit/webkitwebframe.h \
289 WebKit/gtk/webkit/webkitwebhistoryitem.h \
290 WebKit/gtk/webkit/webkitwebsettings.h \
291 WebKit/gtk/webkit/webkitwebview.h
293 webkitgtk_built_sources += \
294 WebKit/gtk/webkit/webkit-marshal.h \
295 WebKit/gtk/webkit/webkit-marshal.cpp
297 webkitgtk_headers += \
298 WebKit/gtk/webkit/webkitprivate.h \
299 WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \
300 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \
301 WebKit/gtk/WebCoreSupport/DragClientGtk.h \
302 WebKit/gtk/WebCoreSupport/EditorClientGtk.h \
303 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \
304 WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \
305 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h
307 webkitgtk_sources += \
308 WebKit/gtk/webkit/webkitnetworkrequest.cpp \
309 WebKit/gtk/webkit/webkitprivate.cpp \
310 WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \
311 WebKit/gtk/webkit/webkitwebframe.cpp \
312 WebKit/gtk/webkit/webkitwebhistoryitem.cpp \
313 WebKit/gtk/webkit/webkitwebsettings.cpp \
314 WebKit/gtk/webkit/webkitwebview.cpp \
315 WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
316 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
317 WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
318 WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
319 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
320 WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
321 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp
323 webkitgtk_cleanfiles += \
324 $(top_builddir)/Programs/GtkLauncher \
325 $(top_builddir)/WebKit/gtk/webkit-1.0.pc
327 pkgconfigdir = $(libdir)/pkgconfig
328 pkgconfig_DATA = WebKit/gtk/webkit-1.0.pc
330 WEBKIT_MARSHAL = $(CURDIR)/WebKit/gtk/webkit/webkit-marshal
331 WEBKIT_MARSHAL_LIST = $(srcdir)/WebKit/gtk/webkit/webkit-marshal.list
334 stamp-webkit-marshal.cpp \
335 stamp-webkit-marshal.h
337 WebKit/gtk/webkit/webkit-marshal.cpp: stamp-webkit-marshal.cpp
340 WebKit/gtk/webkit/webkit-marshal.h: stamp-webkit-marshal.h
343 stamp-webkit-marshal.cpp: $(WEBKIT_MARSHAL_LIST)
344 echo "extern \"C\" {" > $(WEBKIT_MARSHAL).cpp && \
345 $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --body >> $(WEBKIT_MARSHAL).cpp && echo '}' >> $(WEBKIT_MARSHAL).cpp && \
346 echo timestamp > $(@F)
348 stamp-webkit-marshal.h: $(WEBKIT_MARSHAL_LIST)
349 $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --header > $(WEBKIT_MARSHAL).h && \
350 echo timestamp > $(@F)
354 # Files that will be cleaned
355 MAINTAINERCLEANFILES := $(stamp_files) $(BUILT_SOURCES)
356 DISTCLEANFILES := $(stamp_files) $(BUILT_SOURCES)
357 CLEANFILES := $(stamp_files) $(BUILT_SOURCES)
359 # Include module makefiles
360 include JavaScriptCore/GNUmakefile.am
361 include WebCore/GNUmakefile.am
362 include WebKitTools/GNUmakefile.am
365 # Autogenerated sources
367 $(javascriptcore_built_sources) \
368 $(javascriptcore_built_nosources) \
369 $(webcore_built_sources) \
370 $(webcore_built_nosources) \
371 $(webkitgtk_built_sources) \
372 $(webkitgtk_built_nosources)
374 # Project-wide clean rules
376 $(webkitgtk_cleanfiles) \
377 $(top_builddir)/Programs/DumpRenderTree \
378 $(top_builddir)/Programs/testkjs \
381 MAINTAINERCLEANFILES += \
382 $(srcdir)/aconfig.h.in \