blob: 9fb62fa7a589b4d8be41b1308dec7815c339a244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
DIST_SUBDIRS = orcc benchmorc
SUBDIRS = orcc benchmorc
TESTS_ENVIRONMENT = \
testfile="$(srcdir)/test.orc"
TESTS = \
test_accsadubl test-schro \
exec_opcodes_sys \
exec_parse \
perf_opcodes_sys perf_parse \
memcpy_speed \
abi \
test-limits
noinst_PROGRAMS = $(TESTS) generate_xml_table generate_xml_table2 \
generate_opcodes_sys compile_parse compile_parse_c memcpy_speed \
perf_opcodes_sys_compare perf_parse_compare \
exec_parse \
bytecode_parse \
compile_opcodes_sys_c \
compile_opcodes_sys \
show_parse
EXTRA_DIST = test.orc
CLEANFILES = temp-orc-test-*
if ENABLE_BACKEND_NEON
noinst_PROGRAMS += compile_opcodes_sys_neon \
compile_parse_neon
endif
if ENABLE_BACKEND_C64X
noinst_PROGRAMS += compile_opcodes_sys_c64x
endif
if ENABLE_BACKEND_MIPS
noinst_PROGRAMS += compile_opcodes_sys_mips
endif
AM_CFLAGS = $(ORC_CFLAGS)
LIBS = $(ORC_LIBS) $(top_builddir)/orc-test/liborc-test-@ORC_MAJORMINOR@.la
|