1AM_CPPFLAGS = -I $(top_srcdir)/include -I $(top_srcdir)
2
3# May be used by toolexeclibdir.
4gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
5
6DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -DASAN_HAS_EXCEPTIONS=1 -DASAN_NEEDS_SEGV=1 -DCAN_SANITIZE_UB=0
7if USING_MAC_INTERPOSE
8DEFS += -DMAC_INTERPOSE_FUNCTIONS -DMISSING_BLOCKS_SUPPORT
9endif
10AM_CXXFLAGS = -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic -Wno-long-long  -fPIC -fno-builtin -fno-exceptions -fno-rtti -fomit-frame-pointer -funwind-tables -fvisibility=hidden -Wno-variadic-macros -fno-ipa-icf
11AM_CXXFLAGS += $(LIBSTDCXX_RAW_CXX_CXXFLAGS)
12AM_CXXFLAGS += -std=gnu++11
13AM_CXXFLAGS += $(EXTRA_CXXFLAGS)
14ACLOCAL_AMFLAGS = -I $(top_srcdir) -I $(top_srcdir)/config
15
16toolexeclib_LTLIBRARIES = libasan.la
17nodist_toolexeclib_HEADERS = libasan_preinit.o
18
19asan_files = \
20	asan_activation.cc \
21	asan_allocator.cc \
22	asan_debugging.cc \
23	asan_descriptions.cc \
24	asan_errors.cc \
25	asan_fake_stack.cc \
26	asan_flags.cc \
27	asan_globals.cc \
28	asan_interceptors.cc \
29	asan_interceptors_memintrinsics.cc \
30	asan_linux.cc \
31	asan_mac.cc \
32	asan_malloc_linux.cc \
33	asan_malloc_mac.cc \
34	asan_malloc_win.cc \
35	asan_memory_profile.cc \
36	asan_new_delete.cc \
37	asan_poisoning.cc \
38	asan_posix.cc \
39	asan_report.cc \
40	asan_rtl.cc \
41	asan_shadow_setup.cc \
42	asan_stack.cc \
43	asan_stats.cc \
44	asan_suppressions.cc \
45	asan_thread.cc \
46	asan_win.cc \
47	asan_win_dll_thunk.cc \
48	asan_win_dynamic_runtime_thunk.cc
49
50libasan_la_SOURCES = $(asan_files)
51libasan_la_LIBADD = $(top_builddir)/sanitizer_common/libsanitizer_common.la $(top_builddir)/lsan/libsanitizer_lsan.la
52if !USING_MAC_INTERPOSE
53libasan_la_LIBADD += $(top_builddir)/interception/libinterception.la
54endif
55if LIBBACKTRACE_SUPPORTED
56libasan_la_LIBADD += $(top_builddir)/libbacktrace/libsanitizer_libbacktrace.la
57endif
58libasan_la_LIBADD += $(LIBSTDCXX_RAW_CXX_LDFLAGS)
59
60libasan_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` $(link_libasan)
61
62libasan_preinit.o: asan_preinit.o
63	cp $< $@
64
65# Work around what appears to be a GNU make bug handling MAKEFLAGS
66# values defined in terms of make variables, as is the case for CC and
67# friends when we are called from the top level Makefile.
68AM_MAKEFLAGS = \
69	"AR_FLAGS=$(AR_FLAGS)" \
70	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
71	"CFLAGS=$(CFLAGS)" \
72	"CXXFLAGS=$(CXXFLAGS)" \
73	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
74	"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
75	"INSTALL=$(INSTALL)" \
76	"INSTALL_DATA=$(INSTALL_DATA)" \
77	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
78	"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
79	"JC1FLAGS=$(JC1FLAGS)" \
80	"LDFLAGS=$(LDFLAGS)" \
81	"LIBCFLAGS=$(LIBCFLAGS)" \
82	"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
83	"MAKE=$(MAKE)" \
84	"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
85	"PICFLAG=$(PICFLAG)" \
86	"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
87	"SHELL=$(SHELL)" \
88	"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
89	"exec_prefix=$(exec_prefix)" \
90	"infodir=$(infodir)" \
91	"libdir=$(libdir)" \
92	"prefix=$(prefix)" \
93	"includedir=$(includedir)" \
94	"AR=$(AR)" \
95	"AS=$(AS)" \
96	"LD=$(LD)" \
97	"LIBCFLAGS=$(LIBCFLAGS)" \
98	"NM=$(NM)" \
99	"PICFLAG=$(PICFLAG)" \
100	"RANLIB=$(RANLIB)" \
101	"DESTDIR=$(DESTDIR)"
102
103MAKEOVERRIDES=
104
105## ################################################################
106
107