1ACLOCAL_AMFLAGS = -I .. -I ../config
2
3sanincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include/sanitizer
4
5nodist_saninclude_HEADERS =
6
7if SANITIZER_SUPPORTED
8SUBDIRS = sanitizer_common
9nodist_saninclude_HEADERS += \
10  include/sanitizer/common_interface_defs.h
11if !USING_MAC_INTERPOSE
12SUBDIRS += interception
13endif
14if LIBBACKTRACE_SUPPORTED
15SUBDIRS += libbacktrace
16endif
17SUBDIRS += lsan asan ubsan
18nodist_saninclude_HEADERS += \
19  include/sanitizer/lsan_interface.h \
20  include/sanitizer/asan_interface.h
21if TSAN_SUPPORTED
22SUBDIRS += tsan
23endif
24endif
25
26## May be used by toolexeclibdir.
27gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
28
29# Work around what appears to be a GNU make bug handling MAKEFLAGS
30# values defined in terms of make variables, as is the case for CC and
31# friends when we are called from the top level Makefile.
32AM_MAKEFLAGS = \
33	"AR_FLAGS=$(AR_FLAGS)" \
34	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
35	"CFLAGS=$(CFLAGS)" \
36	"CXXFLAGS=$(CXXFLAGS)" \
37	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
38	"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
39	"INSTALL=$(INSTALL)" \
40	"INSTALL_DATA=$(INSTALL_DATA)" \
41	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
42	"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
43	"JC1FLAGS=$(JC1FLAGS)" \
44	"LDFLAGS=$(LDFLAGS)" \
45	"LIBCFLAGS=$(LIBCFLAGS)" \
46	"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
47	"MAKE=$(MAKE)" \
48	"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
49	"PICFLAG=$(PICFLAG)" \
50	"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
51	"SHELL=$(SHELL)" \
52	"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
53	"exec_prefix=$(exec_prefix)" \
54	"infodir=$(infodir)" \
55	"libdir=$(libdir)" \
56	"prefix=$(prefix)" \
57	"includedir=$(includedir)" \
58	"AR=$(AR)" \
59	"AS=$(AS)" \
60	"LD=$(LD)" \
61	"LIBCFLAGS=$(LIBCFLAGS)" \
62	"NM=$(NM)" \
63	"PICFLAG=$(PICFLAG)" \
64	"RANLIB=$(RANLIB)" \
65	"DESTDIR=$(DESTDIR)"
66
67MAKEOVERRIDES=
68
69nodist_toolexeclib_HEADERS = libsanitizer.spec
70
71## ################################################################
72
73