File: Makefile.am

package info (click to toggle)
mdds 3.2.0-4
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 6,372 kB
  • sloc: cpp: 21,777; sh: 1,369; makefile: 692; python: 602
file content (63 lines) | stat: -rw-r--r-- 1,526 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
# SPDX-FileCopyrightText: 2025 Kohei Yoshida
#
# SPDX-License-Identifier: MIT

SUBDIRS = multi_type_vector

AM_CPPFLAGS = -I$(top_srcdir)/include -DNDEBUG

EXTRA_PROGRAMS = \
	flat-segment-tree \
	flat-segment-tree-itrs \
	multi-type-matrix \
	packed-trie-map \
	packed-trie-state-custom \
	packed-trie-state-int \
	point-quad-tree \
	segment-tree \
	sorted-string-map \
	trie-map \
	rtree-simple \
	rtree-erase \
	rtree-medium \
	rtree-medium-bulkload

flat_segment_tree_SOURCES = flat_segment_tree.cpp
flat_segment_tree_itrs_SOURCES = flat_segment_tree_itrs.cpp
multi_type_matrix_SOURCES = multi_type_matrix.cpp
packed_trie_map_SOURCES = packed_trie_map.cpp
packed_trie_state_custom_SOURCES = packed_trie_state_custom.cpp
packed_trie_state_int_SOURCES = packed_trie_state_int.cpp
point_quad_tree_SOURCES = point_quad_tree.cpp
segment_tree_SOURCES = segment_tree.cpp
sorted_string_map_SOURCES = sorted_string_map.cpp
trie_map_SOURCES = trie_map.cpp
rtree_simple_SOURCES = rtree_simple.cpp
rtree_erase_SOURCES = rtree_erase.cpp
rtree_medium_SOURCES = rtree_medium.cpp
rtree_medium_bulkload_SOURCES = rtree_medium_bulkload.cpp

TESTS = \
	flat-segment-tree \
	flat-segment-tree-itrs \
	multi-type-matrix \
	packed-trie-map \
	packed-trie-state-custom \
	packed-trie-state-int \
	point-quad-tree \
	segment-tree \
	sorted-string-map \
	trie-map \
	rtree-simple \
	rtree-erase \
	rtree-medium \
	rtree-medium-bulkload

TEST_ARTIFACTS = \
	*.svg \
	us-presidents.bin \
	cities.bin

clean-local:
	rm -f $(TESTS) $(TEST_ARTIFACTS)