-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
30 lines (22 loc) · 948 Bytes
/
Makefile.am
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
AUTOMAKE_OPTIONS = foreign serial-tests
SUBDIRS = src tests benchmarks examples
TESTS = ./tests/test_client_TCP.py ./tests/test_mem_exhaustion_TCP.py \
./tests/test_store_simple_TCP.py ./tests/test_cache_manager_TCP.py \
./tests/test_iterator_TCP.py ./tests/test_store_TCP.py \
./tests/test_mt_TCP.py ./tests/test_mult_clients_TCP.py \
./tests/test_bulk_transfer_TCP.py
if USE_RDMA
TESTS += ./tests/test_client_RDMA.py ./tests/test_mem_exhaustion_RDMA.py \
./tests/test_store_simple_RDMA.py ./tests/test_cache_manager_RDMA.py \
./tests/test_iterator_RDMA.py ./tests/test_store_RDMA.py \
./tests/test_mt_RDMA.py ./tests/test_mult_clients_RDMA.py
endif
source_dir = src/
DEFAULT_INCLUDES = -I$(source_dir)
.PHONY: docs
check_style:
find . -path ./third_party -prune -o -path ./src/common/schemas -prune -o -name "*.h" -o -name "*.cpp" | xargs cpplint
benchmark: all
./benchmarks/run_benchmarks.py
docs:
doxygen ./docs/Doxyfile