1 ACLOCAL_AMFLAGS = -I .. -I ../config
3 sanincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include/sanitizer
5 nodist_saninclude_HEADERS =
8 SUBDIRS = sanitizer_common
9 nodist_saninclude_HEADERS += \
10 include/sanitizer/common_interface_defs.h
11 if !USING_MAC_INTERPOSE
12 SUBDIRS += interception
14 if LIBBACKTRACE_SUPPORTED
15 SUBDIRS += libbacktrace
17 SUBDIRS += lsan asan ubsan
18 nodist_saninclude_HEADERS += \
19 include/sanitizer/lsan_interface.h \
20 include/sanitizer/asan_interface.h
26 ## May be used by toolexeclibdir.
27 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
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.
33 "AR_FLAGS=$(AR_FLAGS)" \
34 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
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)" \
48 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
49 "PICFLAG=$(PICFLAG)" \
50 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
52 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
53 "exec_prefix=$(exec_prefix)" \
54 "infodir=$(infodir)" \
57 "includedir=$(includedir)" \
61 "LIBCFLAGS=$(LIBCFLAGS)" \
63 "PICFLAG=$(PICFLAG)" \
69 nodist_toolexeclib_HEADERS = libsanitizer.spec
71 ## ################################################################