• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2include $(top_srcdir)/Makefile.tool-tests.am
3
4if HAS_ISA_2_05
5ISA_2_05_FLAG = -DHAS_ISA_2_05
6else
7ISA_2_05_FLAG =
8endif
9
10if HAS_ISA_2_06
11ISA_2_06_FLAG = -DHAS_ISA_2_06
12else
13ISA_2_06_FLAG =
14endif
15
16if HAS_ISA_2_07
17ISA_2_07_FLAG = -DHAS_ISA_2_07
18else
19ISA_2_07_FLAG =
20endif
21
22min_power_isa_FLAGS = $(ISA_2_05_FLAG)  $(ISA_2_06_FLAG) $(ISA_2_07_FLAG)
23
24dist_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
39noinst_HEADERS = \
40	asm.h \
41	malloc.h \
42	sys_mman.h
43
44check_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
55AM_CFLAGS   += $(AM_FLAG_M3264_PRI)
56AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
57
58if VGCONF_OS_IS_DARWIN
59x86_amd64_features_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic
60else
61x86_amd64_features_CFLAGS = $(AM_CFLAGS)
62endif
63
64min_power_isa_CFLAGS = $(min_power_isa_FLAGS)
65