forked from phoboslab/JavaScriptCore-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGNUmakefile.am
More file actions
40 lines (31 loc) · 714 Bytes
/
GNUmakefile.am
File metadata and controls
40 lines (31 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
include $(srcdir)/Source/WTF/GNUmakefile.list.am
noinst_LTLIBRARIES += \
libWTF.la
wtf_lib_for_dep = libWTF.la
$(wtf_lib_for_dep): $(srcdir)/Source/WTF/GNUmakefile.list.am
libWTF_la_LDFLAGS = \
$(no_undefined)
libWTF_la_SOURCES = \
$(wtf_sources)
libWTF_la_LIBADD = \
$(UNICODE_LIBS) \
$(GLIB_LIBS) \
$(WINMM_LIBS) \
-lpthread \
-lz
if TARGET_WIN32
# OwnPtrWin.cpp needs the symbols from gdi32 dll
libWTF_la_LIBADD += -lgdi32
endif
libWTF_la_CXXFLAGS = \
$(global_cxxflags) \
$(libWTF_la_CFLAGS)
libWTF_la_CFLAGS = \
$(global_cflags) \
$(GLIB_CFLAGS) \
$(UNICODE_CFLAGS)
libWTF_la_CPPFLAGS = \
$(global_cppflags) \
-I$(srcdir)/Source \
-I$(srcdir)/Source/WTF \
-I$(srcdir)/Source/WTF/wtf