]> git.ipfire.org Git - thirdparty/gcc.git/blame - libsanitizer/Makefile.am
[C++] Protect call to copy_attributes_to_builtin (PR91505)
[thirdparty/gcc.git] / libsanitizer / Makefile.am
CommitLineData
09eaad5e 1ACLOCAL_AMFLAGS = -I .. -I ../config
2
910b1e93 3sanincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include/sanitizer
4
5nodist_saninclude_HEADERS =
6
e78a493b 7if SANITIZER_SUPPORTED
1e25dcad 8SUBDIRS = sanitizer_common
910b1e93 9nodist_saninclude_HEADERS += \
10 include/sanitizer/common_interface_defs.h
1e25dcad 11if !USING_MAC_INTERPOSE
12SUBDIRS += interception
9cf75457 13endif
1e25dcad 14if LIBBACKTRACE_SUPPORTED
15SUBDIRS += libbacktrace
16endif
1aef015c 17SUBDIRS += lsan asan ubsan
910b1e93 18nodist_saninclude_HEADERS += \
19 include/sanitizer/lsan_interface.h \
36093749 20 include/sanitizer/asan_interface.h \
21 include/sanitizer/tsan_interface.h
1e25dcad 22if TSAN_SUPPORTED
23SUBDIRS += tsan
524c4bbb 24endif
e78a493b 25endif
524c4bbb 26
961b987d 27## May be used by toolexeclibdir.
0812bb06 28gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
961b987d 29
39847690 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.
33AM_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)"
67
8df53e6d 68MAKEOVERRIDES=
69
30ded303 70nodist_toolexeclib_HEADERS = libsanitizer.spec
71
549e2197 72## ################################################################
73
f00f02a3 74include $(top_srcdir)/../multilib.am