2013-05-30 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libsanitizer / Makefile.am
blob308d438074a941163b2aef19d0c45209de1cf8b7
1 ACLOCAL_AMFLAGS = -I .. -I ../config
3 if TSAN_SUPPORTED
4 SUBDIRS = interception sanitizer_common asan tsan 
5 else
6 SUBDIRS = interception sanitizer_common asan 
7 endif
9 if USING_MAC_INTERPOSE
10 SUBDIRS = sanitizer_common asan
11 endif
13 # Work around what appears to be a GNU make bug handling MAKEFLAGS
14 # values defined in terms of make variables, as is the case for CC and
15 # friends when we are called from the top level Makefile.
16 AM_MAKEFLAGS = \
17         "AR_FLAGS=$(AR_FLAGS)" \
18         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
19         "CFLAGS=$(CFLAGS)" \
20         "CXXFLAGS=$(CXXFLAGS)" \
21         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
22         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
23         "INSTALL=$(INSTALL)" \
24         "INSTALL_DATA=$(INSTALL_DATA)" \
25         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
26         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
27         "JC1FLAGS=$(JC1FLAGS)" \
28         "LDFLAGS=$(LDFLAGS)" \
29         "LIBCFLAGS=$(LIBCFLAGS)" \
30         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
31         "MAKE=$(MAKE)" \
32         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
33         "PICFLAG=$(PICFLAG)" \
34         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
35         "SHELL=$(SHELL)" \
36         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
37         "exec_prefix=$(exec_prefix)" \
38         "infodir=$(infodir)" \
39         "libdir=$(libdir)" \
40         "prefix=$(prefix)" \
41         "includedir=$(includedir)" \
42         "AR=$(AR)" \
43         "AS=$(AS)" \
44         "LD=$(LD)" \
45         "LIBCFLAGS=$(LIBCFLAGS)" \
46         "NM=$(NM)" \
47         "PICFLAG=$(PICFLAG)" \
48         "RANLIB=$(RANLIB)" \
49         "DESTDIR=$(DESTDIR)"
51 MAKEOVERRIDES=
53 ## ################################################################