-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (27 loc) · 734 Bytes
/
Makefile
File metadata and controls
37 lines (27 loc) · 734 Bytes
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
default: all
testlog:
bazel test --test_output=all :all
test:
bazel test :all
test_with_mercury:
bazel test :all --//:with-mercury --test_output=all
bazel test --config=asan :all --//:with-mercury --test_output=all
bazel test --config=tsan :all --//:with-mercury --test_output=all
test_homa:
bazel test :all --//:with-homa --//:with-homa-grpc
test_asan:
bazel test --config=asan --test_output=errors :all
test_tsan:
bazel test --config=tsan --test_output=errors :all
basicprof:
bazel build --config=basicprof :all
bazel-bin/protocol_driver_test
gprof bazel-bin/protocol_driver_test
clang-format:
for file in *.{cc,h}; do\
clang-format -i -style=file $${file};\
done
all:
bazel build :all
clean:
bazel clean