rename packages/ to recipes/ per earlier agreement
[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 # Directory for autogenerated sources
33 GENSOURCES := $(top_builddir)/DerivedSources
34 GENPROGRAMS := $(top_builddir)/Programs
35
36 # Script for creating hash tables
37 CREATE_HASH_TABLE = $(srcdir)/JavaScriptCore/create_hash_table
38
39 # Libraries and support components
40 bin_PROGRAMS :=
41
42 noinst_PROGRAMS :=
43
44 noinst_HEADERS :=
45
46 lib_LIBRARIES :=
47
48 IDL_BINDINGS :=
49
50 # Global flags to CPP
51 global_cppflags :=
52
53 global_cppflags += \
54         -DWTF_USE_ICU_UNICODE=1
55
56 # Default compiler flags
57 global_cflags := \
58         -Wall -W -Wcast-align -Wchar-subscripts -Wreturn-type \
59         -Wformat -Wformat-security -Wno-format-y2k -Wundef \
60         -Wmissing-format-attribute -Wpointer-arith -Wwrite-strings \
61         -Wno-unused-parameter -Wno-parentheses \
62         -fno-exceptions
63
64 global_cxxflags := \
65         $(SYMBOL_VISIBILITY_INLINES) \
66         -fno-rtti
67
68 if !ENABLE_DEBUG
69 global_cflags += \
70         $(SYMBOL_VISIBILITY)
71 endif
72
73 # -no-undefined required for building DLLs on Windows
74 # It breaks the build on other platforms, so we use it conditionally
75 if OS_WIN32
76 no_undefined = -no-undefined
77 endif
78
79 if OS_GNU
80 version_script = -Wl,--version-script,$(srcdir)/autotools/symbols.filter
81 endif
82
83 # Shared libraries
84 lib_LTLIBRARIES = \
85         libwebkit-1.0.la
86
87 # Convenience libraries
88 noinst_LTLIBRARIES = \
89         libJavaScriptCore.la \
90         libWebCore.la
91
92 #
93 # JavaScriptCore
94 javascriptcore_h_api :=
95 javascriptcore_cppflags:=
96 javascriptcore_sources :=
97 javascriptcore_built_sources :=
98 javascriptcore_built_nosources :=
99 javascriptcore_dist :=
100
101 javascriptcore_cppflags += \
102         -I$(srcdir)/JavaScriptCore \
103         -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
104         -I$(srcdir)/JavaScriptCore/parser \
105         -I$(srcdir)/JavaScriptCore/wtf \
106         -I$(top_builddir)/DerivedSources
107
108 # The variables above are already included below so no need to touch
109 # these variables unless you really have to
110 nodist_EXTRA_libJavaScriptCore_la_SOURCES = \
111         $(javascriptcore_built_nosources)
112
113 nodist_libJavaScriptCore_la_SOURCES = \
114         $(javascriptcore_built_sources)
115
116 libJavaScriptCore_ladir = $(prefix)/include/webkit-1.0/JavaScriptCore
117 libJavaScriptCore_la_HEADERS = $(javascriptcore_h_api)
118
119 libJavaScriptCore_la_SOURCES = \
120         $(javascriptcore_sources)
121
122 libJavaScriptCore_la_LIBADD = \
123         $(UNICODE_LIBS) \
124         $(GLIB_LIBS) \
125         -lpthread
126
127 libJavaScriptCore_la_CXXFLAGS = \
128         $(global_cxxflags) \
129         $(libJavaScriptCore_la_CFLAGS)
130
131 libJavaScriptCore_la_CFLAGS = \
132         -fstrict-aliasing \
133         -O3 \
134         $(global_cflags) \
135         $(GLIB_CFLAGS) \
136         $(UNICODE_CFLAGS)
137
138 libJavaScriptCore_la_CPPFLAGS = \
139         $(global_cppflags) \
140         $(javascriptcore_cppflags)
141
142 #
143 # WebCore
144 webcore_cppflags :=
145 webcore_sources :=
146 webcore_libadd :=
147 webcore_built_sources :=
148 webcore_built_nosources :=
149 webcore_dist :=
150 webcoregtk_cppflags :=
151 webcoregtk_sources :=
152
153 nodist_EXTRA_libWebCore_la_SOURCES = \
154         $(webcore_built_nosources)
155
156 nodist_libWebCore_la_SOURCES = \
157         $(webcore_built_sources)
158
159 libWebCore_la_SOURCES = \
160         $(webcore_sources) \
161         $(webcoregtk_sources)
162
163 libWebCore_la_CXXFLAGS = \
164         $(global_cxxflags) \
165         $(libWebCore_la_CFLAGS)
166
167 libWebCore_la_CFLAGS = \
168         -fno-strict-aliasing \
169         $(global_cflags) \
170         $(GLIB_CFLAGS) \
171         $(UNICODE_CFLAGS) \
172         $(LIBXML_CFLAGS) \
173         $(CAIRO_CFLAGS) \
174         $(PANGO_CFLAGS) \
175         $(GTK_CFLAGS) \
176         $(XT_CFLAGS) \
177         $(LIBCURL_CFLAGS) \
178         $(LIBSOUP_CFLAGS) \
179         $(FREETYPE_CFLAGS) \
180         $(SQLITE3_CFLAGS) \
181         $(GSTREAMER_CFLAGS) \
182         $(LIBXSLT_CFLAGS) \
183         $(COVERAGE_CFLAGS) \
184         $(HILDON_CFLAGS) \
185         $(GEOCLUE_CFLAGS)
186
187 libWebCore_la_CPPFLAGS = \
188         $(global_cppflags) \
189         $(webcore_cppflags) \
190         $(javascriptcore_cppflags) \
191         $(webcoregtk_cppflags) \
192         $(HILDON_CPPFLAGS)
193
194 libWebCore_la_LIBADD = \
195         libJavaScriptCore.la \
196         libWebCoreJS.la \
197         $(webcore_libadd) \
198         $(GLIB_LIBS) \
199         $(LIBXML_LIBS) \
200         $(CAIRO_LIBS) \
201         $(PANGO_LIBS) \
202         $(GTK_LIBS) \
203         $(XT_LIBS) \
204         $(LIBCURL_LIBS) \
205         $(LIBSOUP_LIBS) \
206         $(FREETYPE_LIBS) \
207         $(UNICODE_LIBS) \
208         $(SQLITE3_LIBS) \
209         $(GSTREAMER_LIBS) \
210         $(LIBXSLT_LIBS) \
211         $(HILDON_LIBS) \
212         $(JPEG_LIBS) \
213         $(PNG_LIBS) \
214         $(GEOCLUE_LIBS) \
215         -lpthread
216
217 # WebKit
218 webkitgtk_h_api :=
219 webkitgtk_sources :=
220 webkitgtk_cppflags :=
221 webkitgtk_built_sources :=
222 webkitgtk_built_nosources :=
223 webkitgtk_cleanfiles :=
224
225 nodist_libwebkit_1_0_la_SOURCES = \
226         $(webkitgtk_built_sources)
227
228 libwebkit_1_0_ladir = $(prefix)/include/webkit-1.0/webkit
229 libwebkit_1_0_la_HEADERS = \
230         $(webkitgtk_h_api) \
231         WebKit/gtk/webkit/webkitenumtypes.h
232
233 libwebkit_1_0_la_SOURCES = \
234         $(webkitgtk_sources)
235
236 libwebkit_1_0_la_CXXFLAGS = \
237         $(libWebCore_la_CXXFLAGS)
238
239 libwebkit_1_0_la_CFLAGS = \
240         $(libWebCore_la_CFLAGS)
241
242 libwebkit_1_0_la_CPPFLAGS = \
243         $(libWebCore_la_CPPFLAGS) \
244         $(webkitgtk_cppflags)
245
246 libwebkit_1_0_la_LDFLAGS = \
247         $(COVERAGE_LDFLAGS) \
248         -version-info @LIBWEBKITGTK_VERSION@ \
249         $(version_script) \
250         $(no_undefined)
251
252 libwebkit_1_0_la_LIBADD = \
253         libWebCore.la
254
255 #
256 # Extra checks and flags
257 global_cppflags += \
258         -DBUILDING_CAIRO__=1 \
259         -DBUILDING_GTK__=1 \
260         -DWTF_CHANGES
261
262 if !ENABLE_FAST_MALLOC
263 global_cppflags += \
264         -DUSE_SYSTEM_MALLOC
265 endif
266
267 if TARGET_X11
268 global_cppflags += -DXP_UNIX
269 endif
270
271 if !ENABLE_DEBUG
272 global_cppflags += -DNDEBUG
273 else
274 webcoregtk_cppflags += \
275         -DG_DISABLE_DEPRECATED \
276         -DGDK_PIXBUF_DISABLE_DEPRECATED \
277         -DGDK_DISABLE_DEPRECATED \
278         -DGTK_DISABLE_DEPRECATED \
279         -DPANGO_DISABLE_DEPRECATED
280
281 # Might be useful in the future
282 #       -DGDK_MULTIHEAD_SAFE \
283 #       -DGTK_MULTIHEAD_SAFE
284 endif
285
286 if !ENABLE_DATABASE
287 global_cppflags += -DENABLE_DATABASE=0
288 endif
289
290 if !ENABLE_ICONDATABASE
291 global_cppflags += -DENABLE_ICONDATABASE=0
292 endif
293
294 if ENABLE_COVERAGE
295 global_cppflags += \
296         -DGCC_GENERATE_TEST_COVERAGE_FILES \
297         -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS
298 endif
299
300 if ENABLE_VIDEO
301 webcore_libadd += -lgstinterfaces-0.10 -lgstvideo-0.10
302 endif
303
304 webkitgtk_h_api += \
305         WebKit/gtk/webkit/webkit.h \
306         WebKit/gtk/webkit/webkitdefines.h \
307         WebKit/gtk/webkit/webkitnetworkrequest.h \
308         WebKit/gtk/webkit/webkitversion.h \
309         WebKit/gtk/webkit/webkitwebbackforwardlist.h \
310         WebKit/gtk/webkit/webkitwebframe.h \
311         WebKit/gtk/webkit/webkitwebhistoryitem.h \
312         WebKit/gtk/webkit/webkitwebinspector.h \
313         WebKit/gtk/webkit/webkitwebnavigationaction.h \
314         WebKit/gtk/webkit/webkitwebpolicydecision.h \
315         WebKit/gtk/webkit/webkitwebsettings.h \
316         WebKit/gtk/webkit/webkitwebwindowfeatures.h \
317         WebKit/gtk/webkit/webkitwebview.h
318
319 webkitgtk_built_sources += \
320         DerivedSources/webkitenumtypes.cpp \
321         DerivedSources/webkitmarshal.cpp \
322         DerivedSources/webkitmarshal.h \
323         WebKit/gtk/webkit/webkitenumtypes.h
324
325 webkitgtk_sources += \
326         WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
327         WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \
328         WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
329         WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \
330         WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
331         WebKit/gtk/WebCoreSupport/DragClientGtk.h \
332         WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
333         WebKit/gtk/WebCoreSupport/EditorClientGtk.h \
334         WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
335         WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \
336         WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
337         WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \
338         WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp \
339         WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h \
340         WebKit/gtk/webkit/webkitnetworkrequest.cpp \
341         WebKit/gtk/webkit/webkitprivate.cpp \
342         WebKit/gtk/webkit/webkitprivate.h \
343         WebKit/gtk/webkit/webkitversion.cpp \
344         WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \
345         WebKit/gtk/webkit/webkitwebframe.cpp \
346         WebKit/gtk/webkit/webkitwebhistoryitem.cpp \
347         WebKit/gtk/webkit/webkitwebinspector.cpp \
348         WebKit/gtk/webkit/webkitwebnavigationaction.cpp \
349         WebKit/gtk/webkit/webkitwebpolicydecision.cpp \
350         WebKit/gtk/webkit/webkitwebsettings.cpp \
351         WebKit/gtk/webkit/webkitwebview.cpp \
352         WebKit/gtk/webkit/webkitwebwindowfeatures.cpp
353
354 webkitgtk_cppflags += \
355         -DBUILDING_WEBKIT \
356         -I$(srcdir)/WebKit/gtk \
357         -I$(srcdir)/WebKit/gtk/WebCoreSupport \
358         -I$(srcdir)/WebKit/gtk/webkit \
359         -I$(top_builddir)/WebKit/gtk/webkit
360
361 webkitgtk_cleanfiles += \
362         $(top_builddir)/Programs/GtkLauncher \
363         $(top_builddir)/WebKit/gtk/webkit-1.0.pc \
364         $(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h
365
366 pkgconfigdir = $(libdir)/pkgconfig
367 pkgconfig_DATA = WebKit/gtk/webkit-1.0.pc
368
369 stamp_files := \
370         stamp-webkitmarshal.cpp \
371         stamp-webkitmarshal.h \
372         stamp-webkitenumtypes.cpp \
373         stamp-webkitenumtypes.h
374
375 WEBKIT_MARSHAL = $(GENSOURCES)/webkitmarshal
376 WEBKIT_MARSHAL_LIST = $(WEBKIT_MARSHAL).list
377
378 $(WEBKIT_MARSHAL_LIST): $(webkitgtk_sources) GNUmakefile.am
379         ( cd $(top_srcdir) && \
380         sed -n -e 's/.*webkit_marshal_\([[:upper:][:digit:]]*__[[:upper:][:digit:]_]*\).*/\1/p' \
381         $(webkitgtk_sources) ) \
382         | sed -e 's/__/:/' -e 'y/_/,/' | sort -u > $@.tmp
383         if cmp -s $@.tmp $@; then \
384                 rm $@.tmp; \
385         else \
386                 mv $@.tmp $@; \
387         fi
388
389 $(WEBKIT_MARSHAL).cpp: stamp-webkitmarshal.cpp
390         @true
391
392 $(WEBKIT_MARSHAL).h: stamp-webkitmarshal.h
393         @true
394
395 stamp-webkitmarshal.cpp: $(WEBKIT_MARSHAL_LIST)
396         echo "extern \"C\" {" > $(WEBKIT_MARSHAL).cpp && \
397         $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --body >> $(WEBKIT_MARSHAL).cpp && echo '}' >> $(WEBKIT_MARSHAL).cpp && \
398         echo timestamp > $(@F)
399
400 stamp-webkitmarshal.h: $(WEBKIT_MARSHAL_LIST)
401         $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --header > $(WEBKIT_MARSHAL).h && \
402         echo timestamp > $(@F)
403
404 WebKit/gtk/webkit/webkitenumtypes.h: stamp-webkitenumtypes.h
405         @true
406 stamp-webkitenumtypes.h: $(webkitgtk_h_api) GNUmakefile
407         (cd $(srcdir) \
408         && glib-mkenums \
409                         --fhead "#ifndef WEBKIT_ENUM_TYPES_H\n" \
410                         --fhead "#define WEBKIT_ENUM_TYPES_H\n\n" \
411                         --fhead "#include <glib-object.h>\n\n" \
412                         --fhead "#include <webkit/webkitdefines.h>\n\n" \
413                         --fhead "G_BEGIN_DECLS\n\n" \
414                         --ftail "G_END_DECLS\n\n" \
415                         --ftail "#endif\n" \
416                         --fprod "#include <@filename@>\n\n" \
417                         --eprod "#define WEBKIT_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n\n" \
418                         --eprod "WEBKIT_API GType\n@enum_name@_get_type(void);\n\n" \
419                 $(webkitgtk_h_api) | \
420                 sed 's,WebKit/gtk/,,' | \
421                 sed 's,web_kit,webkit,' | \
422                 sed 's,WEBKIT_TYPE_KIT,WEBKIT_TYPE,' \
423                 ) > xgen-gth \
424         && (cmp -s xgen-gth WebKit/gtk/webkit/webkitenumtypes.h || cp xgen-gth WebKit/gtk/webkit/webkitenumtypes.h) \
425         && rm -f xgen-gth \
426         && echo timestamp > $(@F)
427
428 DerivedSources/webkitenumtypes.cpp: $(webkitgtk_h_api) GNUmakefile
429         (cd $(srcdir) \
430         && glib-mkenums \
431                         --fhead "#include <config.h>\n" \
432                         --fhead "#include <glib-object.h>\n" \
433                         --fhead "#include \"$(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h\"\n\n" \
434                         --fhead "extern \"C\" {\n\n" \
435                         --fprod "\n/* enumerations from \"@filename@\" */" \
436                         --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
437                         --vprod "    { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
438                         --vtail "    { 0, NULL, NULL }\n};\n\n" \
439                         --vtail "GType @enum_name@_get_type(void)\n{\n" \
440                         --vtail "    static GType type = 0;\n\n" \
441                         --vtail "    if (!type)\n" \
442                         --vtail "        type = g_@type@_register_static(\"@EnumName@\", _@enum_name@_values);\n\n" \
443                         --vtail "    return type;\n}\n\n" \
444                         --ftail "}\n" \
445                 $(webkitgtk_h_api) | \
446                 sed 's,web_kit,webkit,' \
447                 ) > xgen-gtc \
448         && cp xgen-gtc $@ \
449         && rm -f xgen-gtc
450
451 # END WEBKIT GTK+
452 #
453 # Files that will be distributed
454 EXTRA_DIST = \
455         WebKit/LICENSE \
456         $(javascriptcore_dist) \
457         $(webcore_dist) \
458         symbols.filter
459
460 # Files that will be cleaned
461 MAINTAINERCLEANFILES := $(stamp_files) $(BUILT_SOURCES)
462 DISTCLEANFILES := $(stamp_files) $(BUILT_SOURCES) doltcompile doltlibtool
463 CLEANFILES := $(stamp_files) $(BUILT_SOURCES)
464
465 # Include module makefiles
466 include JavaScriptCore/GNUmakefile.am
467 include WebCore/GNUmakefile.am
468 include WebKitTools/GNUmakefile.am
469
470 # Build unit test
471 noinst_PROGRAMS += Programs/UnitTests
472 Programs_UnitTests_CPPFLAGS = \
473         -I$(srcdir)/WebKit/gtk \
474         -I$(top_builddir)/WebKit/gtk \
475         $(global_cppflags) \
476         $(javascriptcore_cppflags)
477
478 Programs_UnitTests_SOURCES = \
479         WebKit/gtk/tests/main.c
480
481 Programs_UnitTests_CFLAGS = \
482         -fno-strict-aliasing \
483         -O2 \
484         $(global_cflags) \
485         $(GLIB_CFLAGS) \
486         $(GTK_CFLAGS)
487
488 Programs_UnitTests_LDADD = \
489         libwebkit-1.0.la \
490         $(GTK_LIBS)
491
492 # Autogenerated sources
493 BUILT_SOURCES := \
494         $(javascriptcore_built_sources) \
495         $(javascriptcore_built_nosources) \
496         $(webcore_built_sources) \
497         $(webcore_built_nosources) \
498         $(webkitgtk_built_sources) \
499         $(webkitgtk_built_nosources)
500
501 # Project-wide clean rules
502 CLEANFILES += \
503         $(webkitgtk_cleanfiles)
504
505 MAINTAINERCLEANFILES += \
506         $(srcdir)/aconfig.h.in \
507         configure \
508         config.* \
509         GNUmakefile.in \
510         INSTALL \
511         README
512
513 # Older automake versions (1.7) place Plo files in a different place so we need
514 # to create the output directory manually.
515 all-local:
516         mkdir -p $(top_builddir)/$(DEPDIR)/DerivedSources
517
518 # remove built sources and program directories
519 clean-local:
520         -rm -rf $(GENSOURCES) $(GENPROGRAMS)