1 # Makefile.in generated by automake 1.11.3 from Makefile.am. 2 # @configure_input@ 3 4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software 6 # Foundation, Inc. 7 # This Makefile.in is free software; the Free Software Foundation 8 # gives unlimited permission to copy and/or distribute it, 9 # with or without modifications, as long as this notice is preserved. 10 11 # This program is distributed in the hope that it will be useful, 12 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without 13 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A 14 # PARTICULAR PURPOSE. 15 16 @SET_MAKE@ 17 18 # This file is used for tool tests, and also in perf/Makefile.am. 19 20 # This file should be included (directly or indirectly) by every 21 # Makefile.am that builds programs. And also the top-level Makefile.am. 22 23 #---------------------------------------------------------------------------- 24 # Global stuff 25 #---------------------------------------------------------------------------- 26 27 VPATH = @srcdir@ 28 pkgdatadir = $(datadir)/@PACKAGE@ 29 pkgincludedir = $(includedir)/@PACKAGE@ 30 pkglibdir = $(libdir)/@PACKAGE@ 31 pkglibexecdir = $(libexecdir)/@PACKAGE@ 32 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 33 install_sh_DATA = $(install_sh) -c -m 644 34 install_sh_PROGRAM = $(install_sh) -c 35 install_sh_SCRIPT = $(install_sh) -c 36 INSTALL_HEADER = $(INSTALL_DATA) 37 transform = $(program_transform_name) 38 NORMAL_INSTALL = : 39 PRE_INSTALL = : 40 POST_INSTALL = : 41 NORMAL_UNINSTALL = : 42 PRE_UNINSTALL = : 43 POST_UNINSTALL = : 44 build_triplet = @build@ 45 host_triplet = @host@ 46 DIST_COMMON = $(dist_noinst_SCRIPTS) $(srcdir)/Makefile.am \ 47 $(srcdir)/Makefile.in $(top_srcdir)/Makefile.all.am \ 48 $(top_srcdir)/Makefile.tool-tests.am 49 50 # The Android toolchain includes all kinds of stdlib helpers present in 51 # bionic which is bad because we are not linking with it and the Android 52 # linker will panic. 53 @VGCONF_PLATVARIANT_IS_ANDROID_TRUE@am__append_1 = -nostdlib 54 @VGCONF_HAVE_PLATFORM_SEC_TRUE@am__append_2 = -DVGA_SEC_@VGCONF_ARCH_SEC@=1 \ 55 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -DVGP_SEC_@VGCONF_ARCH_PRI@_@VGCONF_OS@=1 56 57 @HAS_WRITE_STRINGS_WARNING_TRUE@am__append_3 = -Wno-write-strings 58 @COMPILER_IS_CLANG_TRUE@am__append_4 = -Wno-format-extra-args \ 59 @COMPILER_IS_CLANG_TRUE@ -Wno-literal-range \ 60 @COMPILER_IS_CLANG_TRUE@ -Wno-string-plus-int # \ 61 @COMPILER_IS_CLANG_TRUE@ drd/tests/annotate_ignore_rw.c 62 @COMPILER_IS_CLANG_TRUE@am__append_5 = -Wno-unused-private-field # drd/tests/tsan_unittest.cpp 63 64 # Platform-specific tests 65 @VGCONF_ARCHS_INCLUDE_X86_TRUE@am__append_6 = x86 66 @VGCONF_PLATFORMS_INCLUDE_X86_LINUX_TRUE@am__append_7 = x86-linux 67 @VGCONF_PLATFORMS_INCLUDE_AMD64_LINUX_TRUE@am__append_8 = amd64-linux 68 @VGCONF_PLATFORMS_INCLUDE_PPC32_LINUX_TRUE@am__append_9 = ppc32-linux 69 @VGCONF_PLATFORMS_INCLUDE_ARM_LINUX_TRUE@am__append_10 = arm-linux 70 check_PROGRAMS = 71 subdir = exp-bbv/tests 72 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 73 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 74 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 75 $(ACLOCAL_M4) 76 mkinstalldirs = $(install_sh) -d 77 CONFIG_HEADER = $(top_builddir)/config.h 78 CONFIG_CLEAN_FILES = 79 CONFIG_CLEAN_VPATH_FILES = 80 SCRIPTS = $(dist_noinst_SCRIPTS) 81 SOURCES = 82 DIST_SOURCES = 83 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ 84 html-recursive info-recursive install-data-recursive \ 85 install-dvi-recursive install-exec-recursive \ 86 install-html-recursive install-info-recursive \ 87 install-pdf-recursive install-ps-recursive install-recursive \ 88 installcheck-recursive installdirs-recursive pdf-recursive \ 89 ps-recursive uninstall-recursive 90 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ 91 distclean-recursive maintainer-clean-recursive 92 AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ 93 $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ 94 distdir 95 ETAGS = etags 96 CTAGS = ctags 97 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 98 am__relativize = \ 99 dir0=`pwd`; \ 100 sed_first='s,^\([^/]*\)/.*$$,\1,'; \ 101 sed_rest='s,^[^/]*/*,,'; \ 102 sed_last='s,^.*/\([^/]*\)$$,\1,'; \ 103 sed_butlast='s,/*[^/]*$$,,'; \ 104 while test -n "$$dir1"; do \ 105 first=`echo "$$dir1" | sed -e "$$sed_first"`; \ 106 if test "$$first" != "."; then \ 107 if test "$$first" = ".."; then \ 108 dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ 109 dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ 110 else \ 111 first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ 112 if test "$$first2" = "$$first"; then \ 113 dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ 114 else \ 115 dir2="../$$dir2"; \ 116 fi; \ 117 dir0="$$dir0"/"$$first"; \ 118 fi; \ 119 fi; \ 120 dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ 121 done; \ 122 reldir="$$dir2" 123 ACLOCAL = @ACLOCAL@ 124 AMTAR = @AMTAR@ 125 AR = @AR@ 126 AUTOCONF = @AUTOCONF@ 127 AUTOHEADER = @AUTOHEADER@ 128 AUTOMAKE = @AUTOMAKE@ 129 AWK = @AWK@ 130 BOOST_CFLAGS = @BOOST_CFLAGS@ 131 BOOST_LIBS = @BOOST_LIBS@ 132 CC = @CC@ 133 CCAS = @CCAS@ 134 CCASDEPMODE = @CCASDEPMODE@ 135 CCASFLAGS = @CCASFLAGS@ 136 CCDEPMODE = @CCDEPMODE@ 137 CFLAGS = @CFLAGS@ $(am__append_3) $(am__append_4) 138 CFLAGS_MPI = @CFLAGS_MPI@ 139 CPP = @CPP@ 140 CPPFLAGS = @CPPFLAGS@ 141 CXX = @CXX@ 142 CXXDEPMODE = @CXXDEPMODE@ 143 CXXFLAGS = @CXXFLAGS@ $(am__append_5) 144 CYGPATH_W = @CYGPATH_W@ 145 DEFAULT_SUPP = @DEFAULT_SUPP@ 146 DEFS = @DEFS@ 147 DEPDIR = @DEPDIR@ 148 DIFF = @DIFF@ 149 ECHO_C = @ECHO_C@ 150 ECHO_N = @ECHO_N@ 151 ECHO_T = @ECHO_T@ 152 EGREP = @EGREP@ 153 EXEEXT = @EXEEXT@ 154 FLAG_FNO_STACK_PROTECTOR = @FLAG_FNO_STACK_PROTECTOR@ 155 FLAG_M32 = @FLAG_M32@ 156 FLAG_M64 = @FLAG_M64@ 157 FLAG_MIPS32 = @FLAG_MIPS32@ 158 FLAG_MIPS64 = @FLAG_MIPS64@ 159 FLAG_MMMX = @FLAG_MMMX@ 160 FLAG_MSSE = @FLAG_MSSE@ 161 FLAG_NO_BUILD_ID = @FLAG_NO_BUILD_ID@ 162 FLAG_OCTEON = @FLAG_OCTEON@ 163 FLAG_OCTEON2 = @FLAG_OCTEON2@ 164 FLAG_T_TEXT = @FLAG_T_TEXT@ 165 FLAG_UNLIMITED_INLINE_UNIT_GROWTH = @FLAG_UNLIMITED_INLINE_UNIT_GROWTH@ 166 FLAG_W_EXTRA = @FLAG_W_EXTRA@ 167 FLAG_W_NO_EMPTY_BODY = @FLAG_W_NO_EMPTY_BODY@ 168 FLAG_W_NO_FORMAT_ZERO_LENGTH = @FLAG_W_NO_FORMAT_ZERO_LENGTH@ 169 FLAG_W_NO_NONNULL = @FLAG_W_NO_NONNULL@ 170 FLAG_W_NO_OVERFLOW = @FLAG_W_NO_OVERFLOW@ 171 FLAG_W_NO_UNINITIALIZED = @FLAG_W_NO_UNINITIALIZED@ 172 GDB = @GDB@ 173 GLIBC_VERSION = @GLIBC_VERSION@ 174 GREP = @GREP@ 175 INSTALL = @INSTALL@ 176 INSTALL_DATA = @INSTALL_DATA@ 177 INSTALL_PROGRAM = @INSTALL_PROGRAM@ 178 INSTALL_SCRIPT = @INSTALL_SCRIPT@ 179 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ 180 LDFLAGS = @LDFLAGS@ 181 LDFLAGS_MPI = @LDFLAGS_MPI@ 182 LIBOBJS = @LIBOBJS@ 183 LIBS = @LIBS@ 184 LN_S = @LN_S@ 185 LTLIBOBJS = @LTLIBOBJS@ 186 MAINT = @MAINT@ 187 MAKEINFO = @MAKEINFO@ 188 MKDIR_P = @MKDIR_P@ 189 MPI_CC = @MPI_CC@ 190 OBJEXT = @OBJEXT@ 191 PACKAGE = @PACKAGE@ 192 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ 193 PACKAGE_NAME = @PACKAGE_NAME@ 194 PACKAGE_STRING = @PACKAGE_STRING@ 195 PACKAGE_TARNAME = @PACKAGE_TARNAME@ 196 PACKAGE_URL = @PACKAGE_URL@ 197 PACKAGE_VERSION = @PACKAGE_VERSION@ 198 PATH_SEPARATOR = @PATH_SEPARATOR@ 199 PERL = @PERL@ 200 PREFERRED_STACK_BOUNDARY = @PREFERRED_STACK_BOUNDARY@ 201 RANLIB = @RANLIB@ 202 SED = @SED@ 203 SET_MAKE = @SET_MAKE@ 204 SHELL = @SHELL@ 205 STRIP = @STRIP@ 206 VALT_LOAD_ADDRESS_PRI = @VALT_LOAD_ADDRESS_PRI@ 207 VALT_LOAD_ADDRESS_SEC = @VALT_LOAD_ADDRESS_SEC@ 208 VERSION = @VERSION@ 209 VGCONF_ARCH_PRI = @VGCONF_ARCH_PRI@ 210 VGCONF_ARCH_SEC = @VGCONF_ARCH_SEC@ 211 VGCONF_OS = @VGCONF_OS@ 212 VGCONF_PLATFORM_PRI_CAPS = @VGCONF_PLATFORM_PRI_CAPS@ 213 VGCONF_PLATFORM_SEC_CAPS = @VGCONF_PLATFORM_SEC_CAPS@ 214 VGCONF_PLATVARIANT = @VGCONF_PLATVARIANT@ 215 abs_builddir = @abs_builddir@ 216 abs_srcdir = @abs_srcdir@ 217 abs_top_builddir = @abs_top_builddir@ 218 abs_top_srcdir = @abs_top_srcdir@ 219 ac_ct_CC = @ac_ct_CC@ 220 ac_ct_CXX = @ac_ct_CXX@ 221 am__include = @am__include@ 222 am__leading_dot = @am__leading_dot@ 223 am__quote = @am__quote@ 224 am__tar = @am__tar@ 225 am__untar = @am__untar@ 226 bindir = @bindir@ 227 build = @build@ 228 build_alias = @build_alias@ 229 build_cpu = @build_cpu@ 230 build_os = @build_os@ 231 build_vendor = @build_vendor@ 232 builddir = @builddir@ 233 datadir = @datadir@ 234 datarootdir = @datarootdir@ 235 docdir = @docdir@ 236 dvidir = @dvidir@ 237 exec_prefix = @exec_prefix@ 238 host = @host@ 239 host_alias = @host_alias@ 240 host_cpu = @host_cpu@ 241 host_os = @host_os@ 242 host_vendor = @host_vendor@ 243 htmldir = @htmldir@ 244 includedir = @includedir@ 245 infodir = @infodir@ 246 install_sh = @install_sh@ 247 libdir = @libdir@ 248 libexecdir = @libexecdir@ 249 localedir = @localedir@ 250 localstatedir = @localstatedir@ 251 mandir = @mandir@ 252 mkdir_p = @mkdir_p@ 253 oldincludedir = @oldincludedir@ 254 pdfdir = @pdfdir@ 255 prefix = @prefix@ 256 program_transform_name = @program_transform_name@ 257 psdir = @psdir@ 258 sbindir = @sbindir@ 259 sharedstatedir = @sharedstatedir@ 260 srcdir = @srcdir@ 261 sysconfdir = @sysconfdir@ 262 target_alias = @target_alias@ 263 top_build_prefix = @top_build_prefix@ 264 top_builddir = @top_builddir@ 265 top_srcdir = @top_srcdir@ 266 inplacedir = $(top_builddir)/.in_place 267 268 #---------------------------------------------------------------------------- 269 # Flags 270 #---------------------------------------------------------------------------- 271 272 # Baseline flags for all compilations. Aim here is to maximise 273 # performance and get whatever useful warnings we can out of gcc. 274 # -fno-builtin is important for defeating LLVM's idiom recognition 275 # that somehow causes VG_(memset) to get into infinite recursion. 276 AM_CFLAGS_BASE = \ 277 -O2 -g \ 278 -Wall \ 279 -Wmissing-prototypes \ 280 -Wshadow \ 281 -Wpointer-arith \ 282 -Wstrict-prototypes \ 283 -Wmissing-declarations \ 284 @FLAG_W_NO_FORMAT_ZERO_LENGTH@ \ 285 -fno-strict-aliasing \ 286 -fno-builtin 287 288 @VGCONF_OS_IS_DARWIN_FALSE@AM_CFLAGS_PIC = -fpic -O -g -fno-omit-frame-pointer -fno-strict-aliasing \ 289 @VGCONF_OS_IS_DARWIN_FALSE@ -fno-builtin 290 291 292 # These flags are used for building the preload shared objects. 293 # The aim is to give reasonable performance but also to have good 294 # stack traces, since users often see stack traces extending 295 # into (and through) the preloads. 296 @VGCONF_OS_IS_DARWIN_TRUE@AM_CFLAGS_PIC = -dynamic -O -g -fno-omit-frame-pointer -fno-strict-aliasing \ 297 @VGCONF_OS_IS_DARWIN_TRUE@ -mno-dynamic-no-pic -fpic -fPIC \ 298 @VGCONF_OS_IS_DARWIN_TRUE@ -fno-builtin 299 300 301 # Flags for specific targets. 302 # 303 # Nb: the AM_CPPFLAGS_* values are suitable for building tools and auxprogs. 304 # For building the core, coregrind/Makefile.am files add some extra things. 305 AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@ = \ 306 -I$(top_srcdir) \ 307 -I$(top_srcdir)/include \ 308 -I$(top_srcdir)/VEX/pub \ 309 -DVGA_@VGCONF_ARCH_PRI@=1 \ 310 -DVGO_@VGCONF_OS@=1 \ 311 -DVGP_@VGCONF_ARCH_PRI@_@VGCONF_OS@=1 \ 312 -DVGPV_@VGCONF_ARCH_PRI@_@VGCONF_OS@_@VGCONF_PLATVARIANT@=1 313 314 @VGCONF_HAVE_PLATFORM_SEC_TRUE@AM_CPPFLAGS_@VGCONF_PLATFORM_SEC_CAPS@ = \ 315 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -I$(top_srcdir) \ 316 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -I$(top_srcdir)/include \ 317 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -I$(top_srcdir)/VEX/pub \ 318 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -DVGA_@VGCONF_ARCH_SEC@=1 \ 319 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -DVGO_@VGCONF_OS@=1 \ 320 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -DVGP_@VGCONF_ARCH_SEC@_@VGCONF_OS@=1 \ 321 @VGCONF_HAVE_PLATFORM_SEC_TRUE@ -DVGPV_@VGCONF_ARCH_SEC@_@VGCONF_OS@_@VGCONF_PLATVARIANT@=1 322 323 AM_FLAG_M3264_X86_LINUX = @FLAG_M32@ 324 AM_CFLAGS_X86_LINUX = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY@ \ 325 $(AM_CFLAGS_BASE) -fomit-frame-pointer 326 327 AM_CCASFLAGS_X86_LINUX = @FLAG_M32@ -g 328 AM_FLAG_M3264_AMD64_LINUX = @FLAG_M64@ 329 AM_CFLAGS_AMD64_LINUX = @FLAG_M64@ @PREFERRED_STACK_BOUNDARY@ \ 330 $(AM_CFLAGS_BASE) -fomit-frame-pointer 331 332 AM_CCASFLAGS_AMD64_LINUX = @FLAG_M64@ -g 333 AM_FLAG_M3264_PPC32_LINUX = @FLAG_M32@ 334 AM_CFLAGS_PPC32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) 335 AM_CCASFLAGS_PPC32_LINUX = @FLAG_M32@ -g 336 AM_FLAG_M3264_PPC64_LINUX = @FLAG_M64@ 337 AM_CFLAGS_PPC64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) 338 AM_CCASFLAGS_PPC64_LINUX = @FLAG_M64@ -g 339 AM_FLAG_M3264_ARM_LINUX = @FLAG_M32@ 340 AM_CFLAGS_ARM_LINUX = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY@ \ 341 $(AM_CFLAGS_BASE) -marm -mcpu=cortex-a8 342 343 AM_CCASFLAGS_ARM_LINUX = @FLAG_M32@ \ 344 -marm -mcpu=cortex-a8 -g 345 346 AM_FLAG_M3264_ARM64_LINUX = @FLAG_M64@ 347 AM_CFLAGS_ARM64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) 348 AM_CCASFLAGS_ARM64_LINUX = @FLAG_M64@ -g 349 AM_FLAG_M3264_X86_DARWIN = -arch i386 350 AM_CFLAGS_X86_DARWIN = $(WERROR) -arch i386 $(AM_CFLAGS_BASE) \ 351 -mmacosx-version-min=10.5 \ 352 -fno-stack-protector -fno-pic -fno-PIC 353 354 AM_CCASFLAGS_X86_DARWIN = -arch i386 -g 355 AM_FLAG_M3264_AMD64_DARWIN = -arch x86_64 356 AM_CFLAGS_AMD64_DARWIN = $(WERROR) -arch x86_64 $(AM_CFLAGS_BASE) \ 357 -mmacosx-version-min=10.5 -fno-stack-protector 358 359 AM_CCASFLAGS_AMD64_DARWIN = -arch x86_64 -g 360 AM_FLAG_M3264_S390X_LINUX = @FLAG_M64@ 361 AM_CFLAGS_S390X_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) -fomit-frame-pointer 362 AM_CCASFLAGS_S390X_LINUX = @FLAG_M64@ -g -mzarch -march=z900 363 AM_FLAG_M3264_MIPS32_LINUX = @FLAG_M32@ 364 AM_CFLAGS_MIPS32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) @FLAG_MIPS32@ 365 AM_CCASFLAGS_MIPS32_LINUX = @FLAG_M32@ -g @FLAG_MIPS32@ 366 AM_FLAG_M3264_MIPS64_LINUX = @FLAG_M64@ 367 AM_CFLAGS_MIPS64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) @FLAG_MIPS64@ 368 AM_CCASFLAGS_MIPS64_LINUX = @FLAG_M64@ -g @FLAG_MIPS64@ 369 370 # Flags for the primary target. These must be used to build the 371 # regtests and performance tests. In fact, these must be used to 372 # build anything which is built only once on a dual-arch build. 373 # 374 AM_FLAG_M3264_PRI = $(AM_FLAG_M3264_@VGCONF_PLATFORM_PRI_CAPS@) 375 AM_CPPFLAGS_PRI = $(AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@) 376 AM_CFLAGS_PRI = $(AM_CFLAGS_@VGCONF_PLATFORM_PRI_CAPS@) 377 AM_CCASFLAGS_PRI = $(AM_CCASFLAGS_@VGCONF_PLATFORM_PRI_CAPS@) 378 @VGCONF_HAVE_PLATFORM_SEC_FALSE@AM_FLAG_M3264_SEC = 379 @VGCONF_HAVE_PLATFORM_SEC_TRUE@AM_FLAG_M3264_SEC = $(AM_FLAG_M3264_@VGCONF_PLATFORM_SEC_CAPS@) 380 381 # Baseline link flags for making vgpreload shared objects. 382 # 383 PRELOAD_LDFLAGS_COMMON_LINUX = -nodefaultlibs -shared \ 384 -Wl,-z,interpose,-z,initfirst $(am__append_1) 385 PRELOAD_LDFLAGS_COMMON_DARWIN = -dynamic -dynamiclib -all_load 386 PRELOAD_LDFLAGS_X86_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@ 387 PRELOAD_LDFLAGS_AMD64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ 388 PRELOAD_LDFLAGS_PPC32_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@ 389 PRELOAD_LDFLAGS_PPC64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ 390 PRELOAD_LDFLAGS_ARM_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@ 391 PRELOAD_LDFLAGS_ARM64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ 392 PRELOAD_LDFLAGS_X86_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch i386 393 PRELOAD_LDFLAGS_AMD64_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch x86_64 394 PRELOAD_LDFLAGS_S390X_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ 395 PRELOAD_LDFLAGS_MIPS32_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@ 396 PRELOAD_LDFLAGS_MIPS64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ 397 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include \ 398 -I$(top_srcdir)/coregrind -I$(top_builddir)/include \ 399 -I$(top_srcdir)/VEX/pub -DVGA_@VGCONF_ARCH_PRI@=1 \ 400 -DVGO_@VGCONF_OS@=1 -DVGP_@VGCONF_ARCH_PRI@_@VGCONF_OS@=1 \ 401 -DVGPV_@VGCONF_ARCH_PRI@_@VGCONF_OS@_@VGCONF_PLATVARIANT@=1 \ 402 $(am__append_2) 403 404 # Nb: Tools need to augment these flags with an arch-selection option, such 405 # as $(AM_FLAG_M3264_PRI). 406 AM_CFLAGS = -Winline -Wall -Wshadow -g $(AM_FLAG_M3264_PRI) 407 AM_CXXFLAGS = -Winline -Wall -Wshadow -g $(AM_FLAG_M3264_PRI) 408 # Include AM_CPPFLAGS in AM_CCASFLAGS to allow for older versions of 409 # automake; see comments in Makefile.all.am for more detail. 410 AM_CCASFLAGS = $(AM_CPPFLAGS) 411 @VGCONF_OS_IS_DARWIN_TRUE@noinst_DSYMS = $(check_PROGRAMS) 412 SUBDIRS = . $(am__append_6) $(am__append_7) $(am__append_8) \ 413 $(am__append_9) $(am__append_10) 414 DIST_SUBDIRS = x86 x86-linux amd64-linux ppc32-linux arm-linux . 415 dist_noinst_SCRIPTS = \ 416 filter_bb \ 417 filter_stderr 418 419 EXTRA_DIST = \ 420 logo.include logo.lzss_new 421 422 all: all-recursive 423 424 .SUFFIXES: 425 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.tool-tests.am $(top_srcdir)/Makefile.all.am $(am__configure_deps) 426 @for dep in $?; do \ 427 case '$(am__configure_deps)' in \ 428 *$$dep*) \ 429 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ 430 && { if test -f $@; then exit 0; else break; fi; }; \ 431 exit 1;; \ 432 esac; \ 433 done; \ 434 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign exp-bbv/tests/Makefile'; \ 435 $(am__cd) $(top_srcdir) && \ 436 $(AUTOMAKE) --foreign exp-bbv/tests/Makefile 437 .PRECIOUS: Makefile 438 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 439 @case '$?' in \ 440 *config.status*) \ 441 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ 442 *) \ 443 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ 444 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 445 esac; 446 $(top_srcdir)/Makefile.tool-tests.am $(top_srcdir)/Makefile.all.am: 447 448 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 449 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 450 451 $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 452 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 453 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 454 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 455 $(am__aclocal_m4_deps): 456 457 clean-checkPROGRAMS: 458 -test -z "$(check_PROGRAMS)" || rm -f $(check_PROGRAMS) 459 460 # This directory's subdirectories are mostly independent; you can cd 461 # into them and run `make' without going through this Makefile. 462 # To change the values of `make' variables: instead of editing Makefiles, 463 # (1) if the variable is set in `config.status', edit `config.status' 464 # (which will cause the Makefiles to be regenerated when you run `make'); 465 # (2) otherwise, pass the desired values on the `make' command line. 466 $(RECURSIVE_TARGETS): 467 @fail= failcom='exit 1'; \ 468 for f in x $$MAKEFLAGS; do \ 469 case $$f in \ 470 *=* | --[!k]*);; \ 471 *k*) failcom='fail=yes';; \ 472 esac; \ 473 done; \ 474 dot_seen=no; \ 475 target=`echo $@ | sed s/-recursive//`; \ 476 list='$(SUBDIRS)'; for subdir in $$list; do \ 477 echo "Making $$target in $$subdir"; \ 478 if test "$$subdir" = "."; then \ 479 dot_seen=yes; \ 480 local_target="$$target-am"; \ 481 else \ 482 local_target="$$target"; \ 483 fi; \ 484 ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ 485 || eval $$failcom; \ 486 done; \ 487 if test "$$dot_seen" = "no"; then \ 488 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ 489 fi; test -z "$$fail" 490 491 $(RECURSIVE_CLEAN_TARGETS): 492 @fail= failcom='exit 1'; \ 493 for f in x $$MAKEFLAGS; do \ 494 case $$f in \ 495 *=* | --[!k]*);; \ 496 *k*) failcom='fail=yes';; \ 497 esac; \ 498 done; \ 499 dot_seen=no; \ 500 case "$@" in \ 501 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ 502 *) list='$(SUBDIRS)' ;; \ 503 esac; \ 504 rev=''; for subdir in $$list; do \ 505 if test "$$subdir" = "."; then :; else \ 506 rev="$$subdir $$rev"; \ 507 fi; \ 508 done; \ 509 rev="$$rev ."; \ 510 target=`echo $@ | sed s/-recursive//`; \ 511 for subdir in $$rev; do \ 512 echo "Making $$target in $$subdir"; \ 513 if test "$$subdir" = "."; then \ 514 local_target="$$target-am"; \ 515 else \ 516 local_target="$$target"; \ 517 fi; \ 518 ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ 519 || eval $$failcom; \ 520 done && test -z "$$fail" 521 tags-recursive: 522 list='$(SUBDIRS)'; for subdir in $$list; do \ 523 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ 524 done 525 ctags-recursive: 526 list='$(SUBDIRS)'; for subdir in $$list; do \ 527 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ 528 done 529 530 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) 531 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 532 unique=`for i in $$list; do \ 533 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 534 done | \ 535 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ 536 END { if (nonempty) { for (i in files) print i; }; }'`; \ 537 mkid -fID $$unique 538 tags: TAGS 539 540 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 541 $(TAGS_FILES) $(LISP) 542 set x; \ 543 here=`pwd`; \ 544 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ 545 include_option=--etags-include; \ 546 empty_fix=.; \ 547 else \ 548 include_option=--include; \ 549 empty_fix=; \ 550 fi; \ 551 list='$(SUBDIRS)'; for subdir in $$list; do \ 552 if test "$$subdir" = .; then :; else \ 553 test ! -f $$subdir/TAGS || \ 554 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ 555 fi; \ 556 done; \ 557 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 558 unique=`for i in $$list; do \ 559 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 560 done | \ 561 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ 562 END { if (nonempty) { for (i in files) print i; }; }'`; \ 563 shift; \ 564 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 565 test -n "$$unique" || unique=$$empty_fix; \ 566 if test $$# -gt 0; then \ 567 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 568 "$$@" $$unique; \ 569 else \ 570 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 571 $$unique; \ 572 fi; \ 573 fi 574 ctags: CTAGS 575 CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 576 $(TAGS_FILES) $(LISP) 577 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 578 unique=`for i in $$list; do \ 579 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 580 done | \ 581 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ 582 END { if (nonempty) { for (i in files) print i; }; }'`; \ 583 test -z "$(CTAGS_ARGS)$$unique" \ 584 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ 585 $$unique 586 587 GTAGS: 588 here=`$(am__cd) $(top_builddir) && pwd` \ 589 && $(am__cd) $(top_srcdir) \ 590 && gtags -i $(GTAGS_ARGS) "$$here" 591 592 distclean-tags: 593 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 594 595 distdir: $(DISTFILES) 596 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 597 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 598 list='$(DISTFILES)'; \ 599 dist_files=`for file in $$list; do echo $$file; done | \ 600 sed -e "s|^$$srcdirstrip/||;t" \ 601 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ 602 case $$dist_files in \ 603 */*) $(MKDIR_P) `echo "$$dist_files" | \ 604 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ 605 sort -u` ;; \ 606 esac; \ 607 for file in $$dist_files; do \ 608 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ 609 if test -d $$d/$$file; then \ 610 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ 611 if test -d "$(distdir)/$$file"; then \ 612 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 613 fi; \ 614 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 615 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ 616 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 617 fi; \ 618 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ 619 else \ 620 test -f "$(distdir)/$$file" \ 621 || cp -p $$d/$$file "$(distdir)/$$file" \ 622 || exit 1; \ 623 fi; \ 624 done 625 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ 626 if test "$$subdir" = .; then :; else \ 627 test -d "$(distdir)/$$subdir" \ 628 || $(MKDIR_P) "$(distdir)/$$subdir" \ 629 || exit 1; \ 630 fi; \ 631 done 632 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ 633 if test "$$subdir" = .; then :; else \ 634 dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ 635 $(am__relativize); \ 636 new_distdir=$$reldir; \ 637 dir1=$$subdir; dir2="$(top_distdir)"; \ 638 $(am__relativize); \ 639 new_top_distdir=$$reldir; \ 640 echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ 641 echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ 642 ($(am__cd) $$subdir && \ 643 $(MAKE) $(AM_MAKEFLAGS) \ 644 top_distdir="$$new_top_distdir" \ 645 distdir="$$new_distdir" \ 646 am__remove_distdir=: \ 647 am__skip_length_check=: \ 648 am__skip_mode_fix=: \ 649 distdir) \ 650 || exit 1; \ 651 fi; \ 652 done 653 check-am: all-am 654 $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) 655 $(MAKE) $(AM_MAKEFLAGS) check-local 656 check: check-recursive 657 all-am: Makefile $(SCRIPTS) 658 installdirs: installdirs-recursive 659 installdirs-am: 660 install: install-recursive 661 install-exec: install-exec-recursive 662 install-data: install-data-recursive 663 uninstall: uninstall-recursive 664 665 install-am: all-am 666 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 667 668 installcheck: installcheck-recursive 669 install-strip: 670 if test -z '$(STRIP)'; then \ 671 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 672 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 673 install; \ 674 else \ 675 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 676 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 677 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ 678 fi 679 mostlyclean-generic: 680 681 clean-generic: 682 683 distclean-generic: 684 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 685 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) 686 687 maintainer-clean-generic: 688 @echo "This command is intended for maintainers to use" 689 @echo "it deletes files that may require special tools to rebuild." 690 clean: clean-recursive 691 692 clean-am: clean-checkPROGRAMS clean-generic clean-local mostlyclean-am 693 694 distclean: distclean-recursive 695 -rm -f Makefile 696 distclean-am: clean-am distclean-generic distclean-tags 697 698 dvi: dvi-recursive 699 700 dvi-am: 701 702 html: html-recursive 703 704 html-am: 705 706 info: info-recursive 707 708 info-am: 709 710 install-data-am: 711 712 install-dvi: install-dvi-recursive 713 714 install-dvi-am: 715 716 install-exec-am: 717 718 install-html: install-html-recursive 719 720 install-html-am: 721 722 install-info: install-info-recursive 723 724 install-info-am: 725 726 install-man: 727 728 install-pdf: install-pdf-recursive 729 730 install-pdf-am: 731 732 install-ps: install-ps-recursive 733 734 install-ps-am: 735 736 installcheck-am: 737 738 maintainer-clean: maintainer-clean-recursive 739 -rm -f Makefile 740 maintainer-clean-am: distclean-am maintainer-clean-generic 741 742 mostlyclean: mostlyclean-recursive 743 744 mostlyclean-am: mostlyclean-generic 745 746 pdf: pdf-recursive 747 748 pdf-am: 749 750 ps: ps-recursive 751 752 ps-am: 753 754 uninstall-am: 755 756 .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ 757 ctags-recursive install-am install-strip tags-recursive 758 759 .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ 760 all all-am check check-am check-local clean \ 761 clean-checkPROGRAMS clean-generic clean-local ctags \ 762 ctags-recursive distclean distclean-generic distclean-tags \ 763 distdir dvi dvi-am html html-am info info-am install \ 764 install-am install-data install-data-am install-dvi \ 765 install-dvi-am install-exec install-exec-am install-html \ 766 install-html-am install-info install-info-am install-man \ 767 install-pdf install-pdf-am install-ps install-ps-am \ 768 install-strip installcheck installcheck-am installdirs \ 769 installdirs-am maintainer-clean maintainer-clean-generic \ 770 mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \ 771 tags-recursive uninstall uninstall-am 772 773 774 # This used to be required when Vex had a handwritten Makefile. It 775 # shouldn't be needed any more, though. 776 777 #---------------------------------------------------------------------------- 778 # noinst_PROGRAMS and noinst_DSYMS targets 779 #---------------------------------------------------------------------------- 780 781 # On Darwin, for a program 'p', the DWARF debug info is stored in the 782 # directory 'p.dSYM'. This must be generated after the executable is 783 # created, with 'dsymutil p'. We could redefine LINK with a script that 784 # executes 'dsymutil' after linking, but that's a pain. Instead we use this 785 # hook so that every time "make check" is run, we subsequently invoke 786 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are 787 # newer than their corresponding .dSYM directory. 788 build-noinst_DSYMS: $(noinst_DSYMS) 789 for f in $(noinst_DSYMS); do \ 790 if [ ! -e $$f.dSYM -o $$f -nt $$f.dSYM ] ; then \ 791 echo "dsymutil $$f"; \ 792 dsymutil $$f; \ 793 fi; \ 794 done 795 796 # This is used by coregrind/Makefile.am and Makefile.tool.am for doing 797 # "in-place" installs. It copies $(noinst_PROGRAMS) into $inplacedir. 798 # It needs to be depended on by an 'all-local' rule. 799 inplace-noinst_PROGRAMS: $(noinst_PROGRAMS) 800 mkdir -p $(inplacedir); \ 801 for f in $(noinst_PROGRAMS) ; do \ 802 rm -f $(inplacedir)/$$f; \ 803 ln -f -s ../$(subdir)/$$f $(inplacedir); \ 804 done 805 806 # Similar to inplace-noinst_PROGRAMS 807 inplace-noinst_DSYMS: build-noinst_DSYMS 808 mkdir -p $(inplacedir); \ 809 for f in $(noinst_DSYMS); do \ 810 rm -f $(inplacedir)/$$f.dSYM; \ 811 ln -f -s ../$(subdir)/$$f.dSYM $(inplacedir); \ 812 done 813 814 # This is used by coregrind/Makefile.am and by <tool>/Makefile.am for doing 815 # "make install". It copies $(noinst_PROGRAMS) into $prefix/lib/valgrind/. 816 # It needs to be depended on by an 'install-exec-local' rule. 817 install-noinst_PROGRAMS: $(noinst_PROGRAMS) 818 $(mkinstalldirs) $(DESTDIR)$(pkglibdir); \ 819 for f in $(noinst_PROGRAMS); do \ 820 $(INSTALL_PROGRAM) $$f $(DESTDIR)$(pkglibdir); \ 821 done 822 823 # Similar to install-noinst_PROGRAMS. 824 # Nb: we don't use $(INSTALL_PROGRAM) here because it doesn't work with 825 # directories. XXX: not sure whether the resulting permissions will be 826 # correct when using 'cp -R'... 827 install-noinst_DSYMS: build-noinst_DSYMS 828 $(mkinstalldirs) $(DESTDIR)$(pkglibdir); \ 829 for f in $(noinst_DSYMS); do \ 830 cp -R $$f.dSYM $(DESTDIR)$(pkglibdir); \ 831 done 832 833 # This needs to be depended on by a 'clean-local' rule. 834 clean-noinst_DSYMS: 835 for f in $(noinst_DSYMS); do \ 836 rm -rf $$f.dSYM; \ 837 done 838 839 check-local: build-noinst_DSYMS 840 841 clean-local: clean-noinst_DSYMS 842 843 # Tell versions [3.59,3.63) of GNU make to not export all variables. 844 # Otherwise a system limit (for SysV at least) may be exceeded. 845 .NOEXPORT: 846