1 2 include $(top_srcdir)/Makefile.tool-tests.am 3 4 dist_noinst_SCRIPTS = \ 5 check_vmx_cap \ 6 filter_addresses \ 7 filter_discards \ 8 filter_libc \ 9 filter_numbers \ 10 filter_stderr_basic \ 11 filter_sink \ 12 platform_test \ 13 vg_regtest 14 15 noinst_HEADERS = \ 16 asm.h \ 17 malloc.h \ 18 sys_mman.h 19 20 check_PROGRAMS = \ 21 arch_test \ 22 os_test \ 23 true \ 24 x86_amd64_features 25 26 AM_CFLAGS += $(AM_FLAG_M3264_PRI) 27 AM_CXXFLAGS += $(AM_FLAG_M3264_PRI) 28 29 if VGCONF_OS_IS_DARWIN 30 x86_amd64_features_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic 31 else 32 x86_amd64_features_CFLAGS = $(AM_CFLAGS) 33 endif 34 35