blob: 64c836aeeccfdcfa00c8d21cc58c3545408b6f95 [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
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
12# _SOURCES primary
13# _cleanfiles = files that will be removed by the clean target
14#
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.
19#
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
34
35# Script for creating hash tables
36CREATE_HASH_TABLE = $(srcdir)/JavaScriptCore/kjs/create_hash_table
37
38# Libraries and support components
alp@webkit.org278f1252007-12-27 06:05:21 +000039noinst_HEADERS :=
40
41noinst_PROGRAMS :=
42
43lib_LIBRARIES :=
44
45IDL_BINDINGS :=
46
47# Files that will be distributed
48EXTRA_DIST :=
49
50#
51# Global flags to CPP
alp@webkit.org040ad8b2008-02-04 11:00:43 +000052global_cppflags :=
alp@webkit.org278f1252007-12-27 06:05:21 +000053
54global_cppflags += \
alp@webkit.org6b436af2008-01-23 15:55:41 +000055 -I$(srcdir)/JavaScriptCore \
56 -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
57 -I$(srcdir)/JavaScriptCore/wtf \
58 -I$(srcdir)/JavaScriptCore/kjs \
59 -I$(top_builddir)/DerivedSources
alp@webkit.org278f1252007-12-27 06:05:21 +000060
61# Default compiler flags
62global_cflags := \
63 -Wall -W -Wcast-align -Wchar-subscripts -Wreturn-type \
64 -Wformat -Wformat-security -Wno-format-y2k -Wundef \
65 -Wmissing-format-attribute -Wpointer-arith -Wwrite-strings \
mrowe@apple.com84cdb082008-02-05 03:25:59 +000066 -Wno-unused-parameter
67
68global_cxxflags := \
69 $(SYMBOL_VISIBILITY_INLINES)
alp@webkit.org278f1252007-12-27 06:05:21 +000070
alp@webkit.org36d65492008-01-13 07:33:53 +000071if !ENABLE_DEBUG
72global_cflags += \
mrowe@apple.com84cdb082008-02-05 03:25:59 +000073 -fno-exceptions \
alp@webkit.orgd31a7362008-01-15 21:47:25 +000074 $(SYMBOL_VISIBILITY)
mrowe@apple.com84cdb082008-02-05 03:25:59 +000075
76global_cxxflags += \
77 -fno-rtti
alp@webkit.org36d65492008-01-13 07:33:53 +000078endif
79
80# Shared libraries
81lib_LTLIBRARIES = \
alp@webkit.org66551a12008-03-02 19:51:26 +000082 libwebkit-1.0.la
alp@webkit.org36d65492008-01-13 07:33:53 +000083
84# Convenience libraries
85noinst_LTLIBRARIES = \
alp@webkit.org66551a12008-03-02 19:51:26 +000086 libJavaScriptCore.la \
87 libWebCore.la
alp@webkit.org278f1252007-12-27 06:05:21 +000088
alp@webkit.orgf93619a2007-12-30 03:33:44 +000089#
alp@webkit.org278f1252007-12-27 06:05:21 +000090# JavaScriptCore
alp@webkit.org278f1252007-12-27 06:05:21 +000091javascriptcore_h_api :=
92javascriptcore_cppflags:=
93javascriptcore_sources :=
alp@webkit.org040ad8b2008-02-04 11:00:43 +000094javascriptcore_built_sources :=
alp@webkit.org278f1252007-12-27 06:05:21 +000095javascriptcore_built_nosources :=
96
alp@webkit.orgf93619a2007-12-30 03:33:44 +000097# The variables above are already included below so no need to touch
98# these variables unless you really have to
alp@webkit.org66551a12008-03-02 19:51:26 +000099libJavaScriptCore_ladir = $(prefix)/include/webkit-1.0/JavaScriptCore
alp@webkit.org36d65492008-01-13 07:33:53 +0000100libJavaScriptCore_la_HEADERS = $(javascriptcore_h_api)
alp@webkit.org278f1252007-12-27 06:05:21 +0000101
alp@webkit.org36d65492008-01-13 07:33:53 +0000102libJavaScriptCore_la_SOURCES = \
alp@webkit.org278f1252007-12-27 06:05:21 +0000103 $(javascriptcore_built_sources) \
104 $(javascriptcore_sources)
105
pewtermoose@webkit.org7a953d92008-02-24 07:07:03 +0000106libJavaScriptCore_la_LIBADD = \
107 $(ICU_LIBS) \
108 $(GLOBALDEPS_LIBS) \
109 -lpthread
alp@webkit.org278f1252007-12-27 06:05:21 +0000110
darin@apple.com47e2c232008-02-24 05:42:29 +0000111libJavaScriptCore_la_CXXFLAGS = \
pewtermoose@webkit.org7a953d92008-02-24 07:07:03 +0000112 $(global_cxxflags) \
113 $(global_cflags) \
114 $(GLOBALDEPS_CFLAGS) \
115 -fstrict-aliasing
alp@webkit.org278f1252007-12-27 06:05:21 +0000116
darin@apple.com47e2c232008-02-24 05:42:29 +0000117libJavaScriptCore_la_CFLAGS = \
pewtermoose@webkit.org7a953d92008-02-24 07:07:03 +0000118 $(global_cflags) \
119 $(GLOBALDEPS_CFLAGS) \
120 -fstrict-aliasing
alp@webkit.org278f1252007-12-27 06:05:21 +0000121
alp@webkit.orgf49bd1e2008-01-21 23:06:23 +0000122libJavaScriptCore_la_CPPFLAGS = \
123 $(global_cppflags) \
124 $(javascriptcore_cppflags) \
125 $(ICU_CPPFLAGS)
alp@webkit.org278f1252007-12-27 06:05:21 +0000126
alp@webkit.org278f1252007-12-27 06:05:21 +0000127#
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000128# WebCore
129webcore_cppflags :=
alp@webkit.org278f1252007-12-27 06:05:21 +0000130webcore_sources :=
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000131webcore_headers :=
alp@webkit.org66551a12008-03-02 19:51:26 +0000132webcore_libadd :=
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000133webcore_built_sources :=
134webcore_built_nosources :=
135
alp@webkit.org66551a12008-03-02 19:51:26 +0000136webcore_cppflags += $(HILDON_CPPFLAGS)
137
138# WebKit
alp@webkit.org278f1252007-12-27 06:05:21 +0000139webkitgtk_h_api :=
140webkitgtk_headers :=
141webkitgtk_sources :=
142webkitgtk_cppflags :=
143webkitgtk_built_sources :=
144webkitgtk_built_nosources :=
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000145webkitgtk_cleanfiles :=
alp@webkit.org278f1252007-12-27 06:05:21 +0000146
alp@webkit.org66551a12008-03-02 19:51:26 +0000147libWebCore_la_SOURCES = \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000148 $(webcore_built_sources) \
149 $(webcore_headers) \
alp@webkit.org66551a12008-03-02 19:51:26 +0000150 $(webcore_sources)
alp@webkit.org278f1252007-12-27 06:05:21 +0000151
alp@webkit.org66551a12008-03-02 19:51:26 +0000152libWebCore_la_CXXFLAGS = \
alp@webkit.org36d65492008-01-13 07:33:53 +0000153 -fno-strict-aliasing \
mrowe@apple.com84cdb082008-02-05 03:25:59 +0000154 $(global_cxxflags) \
alp@webkit.org278f1252007-12-27 06:05:21 +0000155 $(global_cflags) \
darin@apple.com47e2c232008-02-24 05:42:29 +0000156 $(GLOBALDEPS_CFLAGS) \
157 $(WEBKITDEPS_CFLAGS) \
alp@webkit.org99436822008-01-16 03:32:29 +0000158 $(LIBCURL_CFLAGS) \
alp@webkit.org278f1252007-12-27 06:05:21 +0000159 $(SQLITE3_CFLAGS) \
160 $(GSTREAMER_CFLAGS) \
161 $(LIBXSLT_CFLAGS) \
alp@webkit.org4ad34cb2008-02-12 21:04:50 +0000162 $(COVERAGE_CFLAGS) \
163 $(HILDON_CFLAGS)
alp@webkit.org278f1252007-12-27 06:05:21 +0000164
alp@webkit.org66551a12008-03-02 19:51:26 +0000165libWebCore_la_CFLAGS = \
alp@webkit.org36d65492008-01-13 07:33:53 +0000166 -fno-strict-aliasing \
alp@webkit.org278f1252007-12-27 06:05:21 +0000167 $(global_cflags) \
darin@apple.com47e2c232008-02-24 05:42:29 +0000168 $(GLOBALDEPS_CFLAGS) \
169 $(WEBKITDEPS_CFLAGS) \
alp@webkit.org99436822008-01-16 03:32:29 +0000170 $(LIBCURL_CFLAGS) \
alp@webkit.org278f1252007-12-27 06:05:21 +0000171 $(SQLITE3_CFLAGS) \
172 $(GSTREAMER_CFLAGS) \
173 $(LIBXSLT_CFLAGS) \
alp@webkit.org4ad34cb2008-02-12 21:04:50 +0000174 $(COVERAGE_CFLAGS) \
175 $(HILDON_CFLAGS)
alp@webkit.org278f1252007-12-27 06:05:21 +0000176
alp@webkit.org66551a12008-03-02 19:51:26 +0000177libWebCore_la_CPPFLAGS = \
alp@webkit.org278f1252007-12-27 06:05:21 +0000178 $(global_cppflags) \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000179 $(webcore_cppflags) \
alp@webkit.orgf49bd1e2008-01-21 23:06:23 +0000180 $(webkitgtk_cppflags) \
181 $(ICU_CPPFLAGS)
alp@webkit.org278f1252007-12-27 06:05:21 +0000182
alp@webkit.org66551a12008-03-02 19:51:26 +0000183libWebCore_la_LIBADD = \
184 libJavaScriptCore.la \
185 $(webcore_libadd) \
darin@apple.com47e2c232008-02-24 05:42:29 +0000186 $(GLOBALDEPS_LIBS) \
187 $(WEBKITDEPS_LIBS) \
alp@webkit.org99436822008-01-16 03:32:29 +0000188 $(LIBCURL_LIBS) \
alp@webkit.org278f1252007-12-27 06:05:21 +0000189 $(ICU_LIBS) \
190 $(SQLITE3_LIBS) \
191 $(GSTREAMER_LIBS) \
192 $(LIBXSLT_LIBS) \
alp@webkit.org4ad34cb2008-02-12 21:04:50 +0000193 $(HILDON_LIBS) \
alp@webkit.org278f1252007-12-27 06:05:21 +0000194 -lpthread \
alp@webkit.orgc53b43d2008-02-21 19:43:44 +0000195 -ljpeg
196
alp@webkit.org66551a12008-03-02 19:51:26 +0000197libwebkit_1_0_ladir = $(prefix)/include/webkit-1.0/webkit
198libwebkit_1_0_la_HEADERS = $(webkitgtk_h_api)
199
200libwebkit_1_0_la_SOURCES = \
201 $(webkitgtk_built_sources) \
202 $(webkitgtk_headers) \
203 $(webkitgtk_sources)
204
205libwebkit_1_0_la_CXXFLAGS = \
206 $(libWebCore_la_CXXFLAGS)
207
208libwebkit_1_0_la_CFLAGS = \
209 $(libWebCore_la_CFLAGS)
210
211libwebkit_1_0_la_CPPFLAGS = \
212 $(libWebCore_la_CPPFLAGS)
213
214libwebkit_1_0_la_LDFLAGS = \
alp@webkit.orgc53b43d2008-02-21 19:43:44 +0000215 $(COVERAGE_LDFLAGS) \
alp@webkit.org278f1252007-12-27 06:05:21 +0000216 -version-info @LIBWEBKITGTK_VERSION@
217
alp@webkit.org66551a12008-03-02 19:51:26 +0000218libwebkit_1_0_la_LIBADD = \
219 libWebCore.la
220
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000221#
alp@webkit.org278f1252007-12-27 06:05:21 +0000222# Extra checks and flags
alp@webkit.org278f1252007-12-27 06:05:21 +0000223global_cppflags += \
224 -DBUILDING_GTK__=1 \
alp@webkit.org278f1252007-12-27 06:05:21 +0000225 -DWTF_CHANGES
226
alp@webkit.org27f95c42008-01-12 07:40:52 +0000227if !ENABLE_FAST_MALLOC
228global_cppflags += \
229 -DUSE_SYSTEM_MALLOC
230endif
231
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000232if TARGET_X11
233global_cppflags += -DXP_UNIX
234endif
235
alp@webkit.org278f1252007-12-27 06:05:21 +0000236if !ENABLE_DEBUG
237global_cppflags += -DNDEBUG
alp@webkit.org040ad8b2008-02-04 11:00:43 +0000238else
alp@webkit.org11a31a72007-12-27 23:14:27 +0000239webkitgtk_cppflags += \
240 -DG_DISABLE_DEPRECATED \
241 -DGDK_PIXBUF_DISABLE_DEPRECATED \
242 -DGDK_DISABLE_DEPRECATED \
243 -DGTK_DISABLE_DEPRECATED \
zecke@webkit.org48bc6f42008-01-03 02:07:28 +0000244 -DPANGO_DISABLE_DEPRECATED
245
246# Might be useful in the future
247# -DGDK_MULTIHEAD_SAFE \
248# -DGTK_MULTIHEAD_SAFE
alp@webkit.org278f1252007-12-27 06:05:21 +0000249endif
250
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000251if !ENABLE_DATABASE
252global_cppflags += -DENABLE_DATABASE=0
alp@webkit.org278f1252007-12-27 06:05:21 +0000253endif
254
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000255if !ENABLE_ICONDATABASE
256global_cppflags += -DENABLE_ICONDATABASE=0
alp@webkit.org278f1252007-12-27 06:05:21 +0000257endif
258
259if ENABLE_COVERAGE
260global_cppflags += \
261 -DGCC_GENERATE_TEST_COVERAGE_FILES \
262 -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS
263endif
264
265if ENABLE_VIDEO
alp@webkit.org66551a12008-03-02 19:51:26 +0000266webcore_libadd += -lgstinterfaces-0.10 -lgstvideo-0.10
alp@webkit.org278f1252007-12-27 06:05:21 +0000267endif
268
alp@webkit.org278f1252007-12-27 06:05:21 +0000269webkitgtk_cppflags += \
alp@webkit.org94c06552008-01-31 23:51:53 +0000270-I$(top_builddir)/WebKit/gtk/webkit \
alp@webkit.org278f1252007-12-27 06:05:21 +0000271-DBUILDING_CAIRO__=1 \
272-DBUILD_WEBKIT
273
274webkitgtk_h_api += \
alp@webkit.org94c06552008-01-31 23:51:53 +0000275 WebKit/gtk/webkit/webkit.h \
276 WebKit/gtk/webkit/webkitdefines.h \
277 WebKit/gtk/webkit/webkitnetworkrequest.h \
278 WebKit/gtk/webkit/webkitwebbackforwardlist.h \
279 WebKit/gtk/webkit/webkitwebframe.h \
280 WebKit/gtk/webkit/webkitwebhistoryitem.h \
281 WebKit/gtk/webkit/webkitwebsettings.h \
alp@webkit.org040ad8b2008-02-04 11:00:43 +0000282 WebKit/gtk/webkit/webkitwebview.h
alp@webkit.org278f1252007-12-27 06:05:21 +0000283
284webkitgtk_built_sources += \
alp@webkit.org94c06552008-01-31 23:51:53 +0000285 WebKit/gtk/webkit/webkit-marshal.h \
286 WebKit/gtk/webkit/webkit-marshal.cpp
alp@webkit.org278f1252007-12-27 06:05:21 +0000287
288webkitgtk_headers += \
alp@webkit.org94c06552008-01-31 23:51:53 +0000289 WebKit/gtk/webkit/webkitprivate.h \
alp@webkit.org278f1252007-12-27 06:05:21 +0000290 WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \
291 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \
292 WebKit/gtk/WebCoreSupport/DragClientGtk.h \
293 WebKit/gtk/WebCoreSupport/EditorClientGtk.h \
294 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \
295 WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000296 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h
alp@webkit.org278f1252007-12-27 06:05:21 +0000297
298webkitgtk_sources += \
alp@webkit.org94c06552008-01-31 23:51:53 +0000299 WebKit/gtk/webkit/webkitnetworkrequest.cpp \
300 WebKit/gtk/webkit/webkitprivate.cpp \
301 WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \
302 WebKit/gtk/webkit/webkitwebframe.cpp \
303 WebKit/gtk/webkit/webkitwebhistoryitem.cpp \
304 WebKit/gtk/webkit/webkitwebsettings.cpp \
305 WebKit/gtk/webkit/webkitwebview.cpp \
alp@webkit.org278f1252007-12-27 06:05:21 +0000306 WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
307 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
308 WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
309 WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
310 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
311 WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
alp@webkit.org040ad8b2008-02-04 11:00:43 +0000312 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp
alp@webkit.org278f1252007-12-27 06:05:21 +0000313
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000314webkitgtk_cleanfiles += \
315 $(top_builddir)/Programs/GtkLauncher \
alp@webkit.org12057322008-02-01 07:01:18 +0000316 $(top_builddir)/WebKit/gtk/webkit-1.0.pc
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000317
alp@webkit.org278f1252007-12-27 06:05:21 +0000318pkgconfigdir = $(libdir)/pkgconfig
alp@webkit.org12057322008-02-01 07:01:18 +0000319pkgconfig_DATA = WebKit/gtk/webkit-1.0.pc
alp@webkit.org278f1252007-12-27 06:05:21 +0000320
alp@webkit.org94c06552008-01-31 23:51:53 +0000321WEBKIT_MARSHAL = $(CURDIR)/WebKit/gtk/webkit/webkit-marshal
322WEBKIT_MARSHAL_LIST = $(srcdir)/WebKit/gtk/webkit/webkit-marshal.list
alp@webkit.org278f1252007-12-27 06:05:21 +0000323
324stamp_files := \
325 stamp-webkit-marshal.cpp \
326 stamp-webkit-marshal.h
327
alp@webkit.org94c06552008-01-31 23:51:53 +0000328WebKit/gtk/webkit/webkit-marshal.cpp: stamp-webkit-marshal.cpp
alp@webkit.org278f1252007-12-27 06:05:21 +0000329 @true
330
alp@webkit.org94c06552008-01-31 23:51:53 +0000331WebKit/gtk/webkit/webkit-marshal.h: stamp-webkit-marshal.h
alp@webkit.org278f1252007-12-27 06:05:21 +0000332 @true
333
334stamp-webkit-marshal.cpp: $(WEBKIT_MARSHAL_LIST)
335 echo "extern \"C\" {" > $(WEBKIT_MARSHAL).cpp && \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000336 $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --body >> $(WEBKIT_MARSHAL).cpp && echo '}' >> $(WEBKIT_MARSHAL).cpp && \
alp@webkit.org278f1252007-12-27 06:05:21 +0000337 echo timestamp > $(@F)
338
339stamp-webkit-marshal.h: $(WEBKIT_MARSHAL_LIST)
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000340 $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --header > $(WEBKIT_MARSHAL).h && \
alp@webkit.org278f1252007-12-27 06:05:21 +0000341 echo timestamp > $(@F)
342
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000343# END WEBKIT GTK+
alp@webkit.org278f1252007-12-27 06:05:21 +0000344
345# Files that will be cleaned
346MAINTAINERCLEANFILES := $(stamp_files) $(BUILT_SOURCES)
347DISTCLEANFILES := $(stamp_files) $(BUILT_SOURCES)
348CLEANFILES := $(stamp_files) $(BUILT_SOURCES)
349
350# Include module makefiles
351include JavaScriptCore/GNUmakefile.am
352include WebCore/GNUmakefile.am
353include WebKitTools/GNUmakefile.am
354
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000355
356# Autogenerated sources
alp@webkit.org36d65492008-01-13 07:33:53 +0000357BUILT_SOURCES = \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000358 $(javascriptcore_built_sources) \
359 $(javascriptcore_built_nosources) \
360 $(webcore_built_sources) \
361 $(webcore_built_nosources) \
362 $(webkitgtk_built_sources) \
363 $(webkitgtk_built_nosources)
364
alp@webkit.org278f1252007-12-27 06:05:21 +0000365# Project-wide clean rules
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000366CLEANFILES += \
367 $(webkitgtk_cleanfiles) \
368 $(top_builddir)/Programs/DumpRenderTree \
369 $(top_builddir)/Programs/testkjs \
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000370 $(GENSOURCES)
alp@webkit.org278f1252007-12-27 06:05:21 +0000371
alp@webkit.orgf93619a2007-12-30 03:33:44 +0000372MAINTAINERCLEANFILES += \
373 $(srcdir)/aconfig.h.in \
374 configure \
375 config.* \
376 GNUmakefile.in \
377 INSTALL \
378 README