* configure.ac: Change target-libasan to target-libsanitizer.
[official-gcc.git] / libsanitizer / Makefile.am
blobb28eb3280fce201864f14592fca34b320b54335a
1 SUBDIRS = interception sanitizer_common asan 
3 # Work around what appears to be a GNU make bug handling MAKEFLAGS
4 # values defined in terms of make variables, as is the case for CC and
5 # friends when we are called from the top level Makefile.
6 AM_MAKEFLAGS = \
7         "AR_FLAGS=$(AR_FLAGS)" \
8         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
9         "CFLAGS=$(CFLAGS)" \
10         "CXXFLAGS=$(CXXFLAGS)" \
11         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
12         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
13         "INSTALL=$(INSTALL)" \
14         "INSTALL_DATA=$(INSTALL_DATA)" \
15         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
16         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
17         "JC1FLAGS=$(JC1FLAGS)" \
18         "LDFLAGS=$(LDFLAGS)" \
19         "LIBCFLAGS=$(LIBCFLAGS)" \
20         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
21         "MAKE=$(MAKE)" \
22         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
23         "PICFLAG=$(PICFLAG)" \
24         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
25         "SHELL=$(SHELL)" \
26         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
27         "exec_prefix=$(exec_prefix)" \
28         "infodir=$(infodir)" \
29         "libdir=$(libdir)" \
30         "prefix=$(prefix)" \
31         "includedir=$(includedir)" \
32         "AR=$(AR)" \
33         "AS=$(AS)" \
34         "CC=$(CC)" \
35         "CXX=$(CXX)" \
36         "LD=$(LD)" \
37         "LIBCFLAGS=$(LIBCFLAGS)" \
38         "NM=$(NM)" \
39         "PICFLAG=$(PICFLAG)" \
40         "RANLIB=$(RANLIB)" \
41         "DESTDIR=$(DESTDIR)"
43 MAKEOVERRIDES=
45 ## ################################################################