Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « testsuite - github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50727c3132270b6fb8f139c0bde17eed198d4f4e (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
49
50

DIST_SUBDIRS = orcc

TESTS_ENVIRONMENT = \
        testfile="$(srcdir)/test.orc"

TESTS = \
	test_accsadubl test-schro \
	exec_opcodes_sys \
	exec_opcodes_float \
	exec_parse \
	perf_opcodes_sys perf_parse \
	memcpy_speed

XFAIL_TESTS = \
	compile_opcodes_float_c \
	exec_opcodes_float

noinst_PROGRAMS = $(TESTS) generate_xml_table generate_xml_table2 \
	generate_opcodes_sys compile_parse compile_parse_c memcpy_speed \
	exec_parse \
	compile_opcodes_sys_c \
	compile_opcodes_float_c \
	compile_opcodes_sys compile_opcodes_float

EXTRA_DIST = test.orc

CLEANFILES = temp-orc-test-*

if ENABLE_BACKEND_NEON
TESTS += compile_opcodes_sys_neon \
	compile_opcodes_float_neon \
	compile_parse_neon
noinst_PROGRAMS += compile_opcodes_sys_neon \
	compile_opcodes_float_neon \
	compile_parse_neon
endif

AM_CFLAGS = $(ORC_CFLAGS) -I/usr/local/include/liboil-0.3/
LIBS = $(ORC_LIBS) $(top_builddir)/orc-test/liborc-test-@ORC_MAJORMINOR@.la -loil-0.3

compile_opcodes_float_c_LDADD = \
	$(top_builddir)/orc-float/liborc-float-@ORC_MAJORMINOR@.la
compile_opcodes_float_neon_LDADD = \
	$(top_builddir)/orc-float/liborc-float-@ORC_MAJORMINOR@.la
compile_opcodes_float_LDADD = \
	$(top_builddir)/orc-float/liborc-float-@ORC_MAJORMINOR@.la
exec_opcodes_float_LDADD = \
	$(top_builddir)/orc-float/liborc-float-@ORC_MAJORMINOR@.la