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