File: Makefile.am

package info (click to toggle)
p4est 2.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,536 kB
  • sloc: ansic: 87,528; makefile: 855; sh: 635; perl: 272; python: 226; awk: 40; javascript: 23
file content (66 lines) | stat: -rw-r--r-- 2,421 bytes parent folder | download
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66

# This file is part of the SC Library
# Makefile.am test
# included non-recursively from toplevel directory

sc_test_programs = \
        test/sc_test_allgather \
        test/sc_test_arrays \
        test/sc_test_builtin \
        test/sc_test_darray_work \
        test/sc_test_dmatrix \
        test/sc_test_dmatrix_pool \
        test/sc_test_io_sink \
        test/sc_test_keyvalue \
        test/sc_test_node_comm \
        test/sc_test_notify \
        test/sc_test_reduce \
        test/sc_test_search \
        test/sc_test_sort \
        test/sc_test_sortb \
        test/sc_test_version \
        test/sc_test_helpers

## Reenable and properly verify pqueue when it is actually used
##      test/sc_test_pqueue \

check_PROGRAMS += $(sc_test_programs)

test_sc_test_allgather_SOURCES = test/test_allgather.c
test_sc_test_arrays_SOURCES = test/test_arrays.c
test_sc_test_builtin_SOURCES = test/test_builtin.c
test_sc_test_darray_work_SOURCES = test/test_darray_work.c
test_sc_test_dmatrix_SOURCES = test/test_dmatrix.c
test_sc_test_dmatrix_pool_SOURCES = test/test_dmatrix_pool.c
test_sc_test_io_sink_SOURCES = test/test_io_sink.c
test_sc_test_keyvalue_SOURCES = test/test_keyvalue.c
test_sc_test_notify_SOURCES = test/test_notify.c
test_sc_test_node_comm_SOURCES = test/test_node_comm.c
## Reenable and properly verify pqueue when it is actually used
## test_sc_test_pqueue_SOURCES = test/test_pqueue.c
test_sc_test_reduce_SOURCES = test/test_reduce.c
test_sc_test_search_SOURCES = test/test_search.c
test_sc_test_sort_SOURCES = test/test_sort.c
test_sc_test_sortb_SOURCES = test/test_sortb.c
test_sc_test_version_SOURCES = test/test_version.c
test_sc_test_helpers_SOURCES = test/test_helpers.c

TESTS += $(sc_test_programs)

LINT_CSOURCES += \
        $(test_sc_test_allgather_SOURCES) \
        $(test_sc_test_arrays_SOURCES) \
        $(test_sc_test_builtin_SOURCES) \
        $(test_sc_test_darray_work) \
        $(test_sc_test_dmatrix_SOURCES) \
        $(test_sc_test_dmatrix_pool_SOURCES) \
        $(test_sc_test_io_sink_SOURCES) \
        $(test_sc_test_keyvalue_SOURCES) \
        $(test_sc_test_notify_SOURCES) \
        $(test_sc_test_pqueue_SOURCES) \
        $(test_sc_test_reduce_SOURCES) \
        $(test_sc_test_search_SOURCES) \
        $(test_sc_test_sort_SOURCES) \
        $(test_sc_test_sortb_SOURCES) \
        $(test_sc_test_version_SOURCES) \
        $(test_sc_test_helpers_SOURCES)