]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/valgrind/src/valgrind-3.6.0-svn/Makefile.all.am
update
[l4.git] / l4 / pkg / valgrind / src / valgrind-3.6.0-svn / Makefile.all.am
1
2 # This file should be included (directly or indirectly) by every
3 # Makefile.am that builds programs.  And also the top-level Makefile.am.
4
5 #----------------------------------------------------------------------------
6 # Global stuff
7 #----------------------------------------------------------------------------
8
9 inplacedir = $(top_builddir)/.in_place
10
11 # This used to be required when Vex had a handwritten Makefile.  It
12 # shouldn't be needed any more, though.
13 ##.NOTPARALLEL:
14
15 #----------------------------------------------------------------------------
16 # noinst_PROGRAMS and noinst_DSYMS targets
17 #----------------------------------------------------------------------------
18
19 # On Darwin, for a program 'p', the DWARF debug info is stored in the
20 # directory 'p.dSYM'.  This must be generated after the executable is
21 # created, with 'dsymutil p'.  We could redefine LINK with a script that
22 # executes 'dsymutil' after linking, but that's a pain.  Instead we use this
23 # hook so that every time "make check" is run, we subsequently invoke
24 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are
25 # newer than their corresponding .dSYM directory.
26 build-noinst_DSYMS: $(noinst_DSYMS)
27         for f in $(noinst_DSYMS); do \
28           if [ ! -e $$f.dSYM  -o  $$f -nt $$f.dSYM ] ; then \
29               echo "dsymutil $$f"; \
30               dsymutil $$f; \
31           fi; \
32         done
33
34 # This is used by coregrind/Makefile.am and Makefile.tool.am for doing
35 # "in-place" installs.  It copies $(noinst_PROGRAMS) into $inplacedir.
36 # It needs to be depended on by an 'all-local' rule.
37 inplace-noinst_PROGRAMS: $(noinst_PROGRAMS)
38         mkdir -p $(inplacedir); \
39         for f in $(noinst_PROGRAMS) ; do \
40           rm -f $(inplacedir)/$$f; \
41           ln -f -s ../$(subdir)/$$f $(inplacedir); \
42         done
43
44 # Similar to inplace-noinst_PROGRAMS
45 inplace-noinst_DSYMS: build-noinst_DSYMS
46         mkdir -p $(inplacedir); \
47         for f in $(noinst_DSYMS); do \
48           rm -f $(inplacedir)/$$f.dSYM; \
49           ln -f -s ../$(subdir)/$$f.dSYM $(inplacedir); \
50         done
51
52 # This is used by coregrind/Makefile.am and by <tool>/Makefile.am for doing
53 # "make install".  It copies $(noinst_PROGRAMS) into $prefix/lib/valgrind/.
54 # It needs to be depended on by an 'install-exec-local' rule.
55 install-noinst_PROGRAMS: $(noinst_PROGRAMS)
56         $(mkinstalldirs) $(DESTDIR)$(pkglibdir); \
57         for f in $(noinst_PROGRAMS); do \
58           $(INSTALL_PROGRAM) $$f $(DESTDIR)$(pkglibdir); \
59         done
60
61 # Similar to install-noinst_PROGRAMS.
62 # Nb: we don't use $(INSTALL_PROGRAM) here because it doesn't work with
63 # directories.  XXX: not sure whether the resulting permissions will be
64 # correct when using 'cp -R'...
65 install-noinst_DSYMS: build-noinst_DSYMS
66         $(mkinstalldirs) $(DESTDIR)$(pkglibdir); \
67         for f in $(noinst_DSYMS); do \
68           cp -R $$f.dSYM $(DESTDIR)$(pkglibdir); \
69         done
70
71 # This needs to be depended on by a 'clean-local' rule.
72 clean-noinst_DSYMS:
73         for f in $(noinst_DSYMS); do \
74           rm -rf $$f.dSYM; \
75         done
76
77 #----------------------------------------------------------------------------
78 # Flags
79 #----------------------------------------------------------------------------
80
81 # Baseline flags for all compilations.  Aim here is to maximise
82 # performance and get whatever useful warnings we can out of gcc.
83 AM_CFLAGS_BASE = \
84         -O2 -g \
85         -Wall \
86         -Wmissing-prototypes \
87         -Wshadow \
88         -Wpointer-arith \
89         -Wstrict-prototypes \
90         -Wmissing-declarations \
91         @FLAG_W_NO_FORMAT_ZERO_LENGTH@ \
92         -fno-strict-aliasing
93
94 # These flags are used for building the preload shared objects.
95 # The aim is to give reasonable performance but also to have good
96 # stack traces, since users often see stack traces extending 
97 # into (and through) the preloads.
98 if VGCONF_OS_IS_DARWIN
99 AM_CFLAGS_PIC = -dynamic -O -g -fno-omit-frame-pointer -fno-strict-aliasing \
100                 -mno-dynamic-no-pic -fpic -fPIC
101 else
102 AM_CFLAGS_PIC = -fpic -O -g -fno-omit-frame-pointer -fno-strict-aliasing
103 endif
104
105
106 # Flags for specific targets.
107 #
108 # Nb: the AM_CPPFLAGS_* values are suitable for building tools and auxprogs.
109 # For building the core, coregrind/Makefile.am files add some extra things.
110 #
111 # Also: in newer versions of automake (1.10 onwards?) asm files ending with
112 # '.S' are considered "pre-processed" (as opposed to those ending in '.s')
113 # and so the CPPFLAGS are passed to the assembler.  But this is not true for
114 # older automakes (e.g. 1.8.5, 1.9.6), sigh.  So we include
115 # AM_CPPFLAGS_<PLATFORM> in each AM_CCASFLAGS_<PLATFORM> variable.  This
116 # means some of the flags are duplicated on systems with newer versions of
117 # automake, but this does not really matter and seems hard to avoid.
118
119 if VGCONF_OS_IS_L4RE
120 AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@ = $(L4_CPPFLAGS)\
121         -I$(top_srcdir) \
122         -I$(top_srcdir)/include \
123         -I$(top_srcdir)/VEX/pub \
124         -I$(top_builddir)/VEX/pub \
125         -DVGA_@VGCONF_ARCH_PRI@=1 \
126         -DVGO_@VGCONF_OS@=1 \
127         -DVGP_@VGCONF_ARCH_PRI@_@VGCONF_OS@=1
128 else
129 AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@ = \
130         -I$(top_srcdir) \
131         -I$(top_srcdir)/include \
132         -I$(top_srcdir)/VEX/pub \
133         -I$(top_builddir)/VEX/pub \
134         -DVGA_@VGCONF_ARCH_PRI@=1 \
135         -DVGO_@VGCONF_OS@=1 \
136         -DVGP_@VGCONF_ARCH_PRI@_@VGCONF_OS@=1
137 endif
138 if VGCONF_HAVE_PLATFORM_SEC
139 AM_CPPFLAGS_@VGCONF_PLATFORM_SEC_CAPS@ = \
140         -I$(top_srcdir) \
141         -I$(top_srcdir)/include \
142         -I$(top_srcdir)/VEX/pub \
143         -I$(top_builddir)/VEX/pub \
144         -DVGA_@VGCONF_ARCH_SEC@=1 \
145         -DVGO_@VGCONF_OS@=1 \
146         -DVGP_@VGCONF_ARCH_SEC@_@VGCONF_OS@=1
147 endif
148
149 AM_FLAG_M3264_X86_LINUX   = @FLAG_M32@
150 AM_CFLAGS_X86_LINUX       = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY@ \
151                                 $(AM_CFLAGS_BASE)
152 AM_CCASFLAGS_X86_LINUX    = $(AM_CPPFLAGS_X86_LINUX) @FLAG_M32@ -g
153
154 AM_FLAG_M3264_AMD64_LINUX = @FLAG_M64@
155 AM_CFLAGS_AMD64_LINUX     = @FLAG_M64@ -fomit-frame-pointer \
156                                 @PREFERRED_STACK_BOUNDARY@ $(AM_CFLAGS_BASE)
157 AM_CCASFLAGS_AMD64_LINUX  = $(AM_CPPFLAGS_AMD64_LINUX) @FLAG_M64@ -g
158
159 AM_FLAG_M3264_PPC32_LINUX = @FLAG_M32@
160 AM_CFLAGS_PPC32_LINUX     = @FLAG_M32@ $(AM_CFLAGS_BASE)
161 AM_CCASFLAGS_PPC32_LINUX  = $(AM_CPPFLAGS_PPC32_LINUX) @FLAG_M32@ -g
162
163 AM_FLAG_M3264_PPC64_LINUX = @FLAG_M64@
164 AM_CFLAGS_PPC64_LINUX     = @FLAG_M64@ $(AM_CFLAGS_BASE)
165 AM_CCASFLAGS_PPC64_LINUX  = $(AM_CPPFLAGS_PPC64_LINUX) @FLAG_M64@ -g
166
167 AM_FLAG_M3264_ARM_LINUX   = @FLAG_M32@
168 AM_CFLAGS_ARM_LINUX       = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY@ \
169                                 $(AM_CFLAGS_BASE) -marm
170 AM_CCASFLAGS_ARM_LINUX    = $(AM_CPPFLAGS_ARM_LINUX) @FLAG_M32@ -marm -g
171
172 AM_FLAG_M3264_PPC32_AIX5  = @FLAG_MAIX32@
173 AM_CFLAGS_PPC32_AIX5      = @FLAG_MAIX32@ -mcpu=powerpc $(AM_CFLAGS_BASE)
174 AM_CCASFLAGS_PPC32_AIX5   = $(AM_CPPFLAGS_PPC32_AIX5) \
175                             @FLAG_MAIX32@ -mcpu=powerpc -g
176
177 AM_FLAG_M3264_PPC64_AIX5  = @FLAG_MAIX64@
178 AM_CFLAGS_PPC64_AIX5      = @FLAG_MAIX64@ -mcpu=powerpc64 $(AM_CFLAGS_BASE)
179 AM_CCASFLAGS_PPC64_AIX5   = $(AM_CPPFLAGS_PPC64_AIX5) \
180                             @FLAG_MAIX64@ -mcpu=powerpc64 -g
181
182 AM_FLAG_M3264_X86_DARWIN = -arch i386
183 AM_CFLAGS_X86_DARWIN     = $(WERROR) -arch i386 $(AM_CFLAGS_BASE) \
184                                 -mmacosx-version-min=10.5 \
185                                 -fno-stack-protector -fno-pic -fno-PIC
186
187 AM_CCASFLAGS_X86_DARWIN  = $(AM_CPPFLAGS_X86_DARWIN) -arch i386 -g
188
189 AM_FLAG_M3264_AMD64_DARWIN = -arch x86_64
190 AM_CFLAGS_AMD64_DARWIN     = $(WERROR) -arch x86_64 $(AM_CFLAGS_BASE) \
191                             -mmacosx-version-min=10.5 -fno-stack-protector
192 AM_CCASFLAGS_AMD64_DARWIN  = $(AM_CPPFLAGS_AMD64_DARWIN) -arch x86_64 -g
193
194 AM_FLAG_M3264_X86_L4RE = @FLAG_M32@
195 AM_CFLAGS_X86_L4RE     = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY@ \
196                                                  $(L4_CFLAGS) $(AM_CFLAGS_BASE)
197 AM_CCASFLAGS_X86_L4RE  = $(L4_CPPFLAGS) @FLAG_M32@ -g
198 AM_CXXFLAGS_X86_L4RE   = $(L4_CXXFLAGS) @FLAG_M32@
199 #AM_CPPFLAGS_X86_L4RE   = $(L4_CPPFLAGS) $(AM_CPPFLAGS_X86_L4RE)
200
201 AM_FLAG_M3264_S390X_LINUX = @FLAG_M64@
202 AM_CFLAGS_S390X_LINUX     = @FLAG_M64@ $(AM_CFLAGS_BASE)
203 AM_CCASFLAGS_S390X_LINUX  = $(AM_CPPFLAGS_S390X_LINUX) -mzarch -march=z900 \
204                             @FLAG_M64@ -g
205
206 # Flags for the primary target.  These must be used to build the
207 # regtests and performance tests.  In fact, these must be used to
208 # build anything which is built only once on a dual-arch build.
209 #
210 AM_FLAG_M3264_PRI = $(AM_FLAG_M3264_@VGCONF_PLATFORM_PRI_CAPS@)
211 AM_CPPFLAGS_PRI   = $(AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
212 AM_CFLAGS_PRI     = $(AM_CFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
213 AM_CCASFLAGS_PRI  = $(AM_CCASFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
214 AM_CXXFLAGS_PRI   = $(AM_CXXFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
215
216 if VGCONF_HAVE_PLATFORM_SEC
217  AM_FLAG_M3264_SEC = $(AM_FLAG_M3264_@VGCONF_PLATFORM_SEC_CAPS@)
218 else
219  AM_FLAG_M3264_SEC = 
220 endif
221
222
223 # Baseline link flags for making vgpreload shared objects.
224 #
225 PRELOAD_LDFLAGS_COMMON_LINUX  = -nodefaultlibs -shared -Wl,-z,interpose,-z,initfirst
226 PRELOAD_LDFLAGS_COMMON_AIX5   = -nodefaultlibs -shared -Wl,-G -Wl,-bnogc
227 PRELOAD_LDFLAGS_COMMON_DARWIN = -dynamic -dynamiclib -all_load
228 PRELOAD_LDFLAGS_COMMON_L4RE   = -nodefaultlibs -shared -Wl,-z,interpose,-z,initfirst
229
230 PRELOAD_LDFLAGS_X86_LINUX    = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
231 PRELOAD_LDFLAGS_AMD64_LINUX  = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
232 PRELOAD_LDFLAGS_PPC32_LINUX  = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
233 PRELOAD_LDFLAGS_PPC64_LINUX  = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
234 PRELOAD_LDFLAGS_ARM_LINUX    = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
235 PRELOAD_LDFLAGS_PPC32_AIX5   = $(PRELOAD_LDFLAGS_COMMON_AIX5)  @FLAG_MAIX32@
236 PRELOAD_LDFLAGS_PPC64_AIX5   = $(PRELOAD_LDFLAGS_COMMON_AIX5)  @FLAG_MAIX64@
237 PRELOAD_LDFLAGS_X86_DARWIN   = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch i386
238 PRELOAD_LDFLAGS_AMD64_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch x86_64
239 PRELOAD_LDFLAGS_S390X_LINUX  = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
240 PRELOAD_LDFLAGS_X86_L4RE     = $(PRELOAD_LDFLAGS_COMMON_L4RE) @FLAG_M32@
241