OSDN Git Service

2012-11-12 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / libsanitizer / Makefile.am
1 SUBDIRS = interception sanitizer_common asan 
2
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)"
42
43 MAKEOVERRIDES=
44
45 ## ################################################################
46