forked from dedupv1/dedupv1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
66 lines (44 loc) · 1.69 KB
/
Makefile
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
.PHONY: all clean install stylecheck dedupv1_core_test dedupv1d_test dedupv1d dedupv1_base_test contrib research
default: all
all:
./scripts/filter_path.py scons all
clean:
scons -c | ./filter_path.py --stdin
install:
./scripts/filter_path.py scons install
dedupv1_base_test:
./scripts/filter_path.py scons dedupv1_base_test
dedupv1_core_test:
./scripts/filter_path.py scons dedupv1_core_test
dedupv1_contrib_test:
./scripts/filter_path.py scons dedupv1_contrib_test
dedupv1d_test:
./scripts/filter_path.py scons dedupv1d_test
dedupv1d:
./scripts/filter_path.py scons dedupv1d
contrib:
./scripts/filter_path.py scons contrib
release:
scons --release all | ./filter_path.py --stdin
release_clean:
scons --release -c | ./filter_path.py --stdin
release_install:
scons --release install | ./filter_path.py --stdin
valgrind:
scons --no-tc-malloc --no-tbb-malloc --deadlock-avoidance-timeout=0 all | ./filter_path.py --stdin
valgrind_clean:
scons -c | ./filter_path.py --stdin
valgrind_dedupv1_base_test:
scons --no-tc-malloc --no-tbb-malloc --deadlock-avoidance-timeout=0 dedupv1_base_test | ./filter_path.py --stdin
valgrind_dedupv1_core_test:
scons --no-tc-malloc --no-tbb-malloc --deadlock-avoidance-timeout=0 dedupv1_core_test | ./filter_path.py --stdin
valgrind_dedupv1_contrib_test:
scons --no-tc-malloc --no-tbb-malloc --deadlock-avoidance-timeout=0 dedupv1_contrib_test | ./filter_path.py --stdin
valgrind_dedupv1d_test:
scons --no-tc-malloc --no-tbb-malloc --deadlock-avoidance-timeout=0 dedupv1d_test | ./filter_path.py --stdin
research:
scons --research all | ./filter_path.py --stdin
stylecheck:
export DEDUPV1_ROOT=`pwd`
echo ${DEDUPV1_ROOT}
thirdparty/cpplint/cpplint