re PR target/80090 (Incorrect assembler - output_addr_const may generate visibility...
[gcc.git] / libsanitizer / Makefile.am
index b28eb3280fce201864f14592fca34b320b54335a..6afb2b0e048ebf90b05bb0d041549812df65dc59 100644 (file)
@@ -1,4 +1,30 @@
-SUBDIRS = interception sanitizer_common asan 
+ACLOCAL_AMFLAGS = -I .. -I ../config
+
+sanincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include/sanitizer
+
+nodist_saninclude_HEADERS =
+
+if SANITIZER_SUPPORTED
+SUBDIRS = sanitizer_common
+nodist_saninclude_HEADERS += \
+  include/sanitizer/common_interface_defs.h
+if !USING_MAC_INTERPOSE
+SUBDIRS += interception
+endif
+if LIBBACKTRACE_SUPPORTED
+SUBDIRS += libbacktrace
+endif
+SUBDIRS += lsan asan ubsan
+nodist_saninclude_HEADERS += \
+  include/sanitizer/lsan_interface.h \
+  include/sanitizer/asan_interface.h
+if TSAN_SUPPORTED
+SUBDIRS += tsan
+endif
+endif
+
+## May be used by toolexeclibdir.
+gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
 
 # Work around what appears to be a GNU make bug handling MAKEFLAGS
 # values defined in terms of make variables, as is the case for CC and
@@ -31,8 +57,6 @@ AM_MAKEFLAGS = \
        "includedir=$(includedir)" \
        "AR=$(AR)" \
        "AS=$(AS)" \
-       "CC=$(CC)" \
-       "CXX=$(CXX)" \
        "LD=$(LD)" \
        "LIBCFLAGS=$(LIBCFLAGS)" \
        "NM=$(NM)" \
@@ -42,5 +66,7 @@ AM_MAKEFLAGS = \
 
 MAKEOVERRIDES=
 
+nodist_toolexeclib_HEADERS = libsanitizer.spec
+
 ## ################################################################