1 2 include $(top_srcdir)/Makefile.tool-tests.am 3 4 if HAS_ISA_2_05 5 ISA_2_05_FLAG = -DHAS_ISA_2_05 6 else 7 ISA_2_05_FLAG = 8 endif 9 10 if HAS_ISA_2_06 11 ISA_2_06_FLAG = -DHAS_ISA_2_06 12 else 13 ISA_2_06_FLAG = 14 endif 15 16 if HAS_ISA_2_07 17 ISA_2_07_FLAG = -DHAS_ISA_2_07 18 else 19 ISA_2_07_FLAG = 20 endif 21 22 min_power_isa_FLAGS = $(ISA_2_05_FLAG) $(ISA_2_06_FLAG) $(ISA_2_07_FLAG) 23 24 dist_noinst_SCRIPTS = \ 25 check_headers_and_includes \ 26 check_makefile_consistency \ 27 check_ppc64_auxv_cap \ 28 filter_addresses \ 29 filter_discards \ 30 filter_libc \ 31 filter_numbers \ 32 filter_stderr_basic \ 33 filter_sink \ 34 filter_xml_frames \ 35 platform_test \ 36 post_regtest_checks \ 37 vg_regtest 38 39 noinst_HEADERS = \ 40 asm.h \ 41 malloc.h \ 42 sys_mman.h 43 44 check_PROGRAMS = \ 45 arch_test \ 46 os_test \ 47 true \ 48 x86_amd64_features \ 49 s390x_features \ 50 mips_features \ 51 power_insn_available \ 52 is_ppc64_BE \ 53 min_power_isa 54 55 AM_CFLAGS += $(AM_FLAG_M3264_PRI) 56 AM_CXXFLAGS += $(AM_FLAG_M3264_PRI) 57 58 if VGCONF_OS_IS_DARWIN 59 x86_amd64_features_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic 60 else 61 x86_amd64_features_CFLAGS = $(AM_CFLAGS) 62 endif 63 64 min_power_isa_CFLAGS = $(min_power_isa_FLAGS) 65