-
Notifications
You must be signed in to change notification settings - Fork 155
/
Makefile
27 lines (19 loc) · 881 Bytes
/
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
bench: a.out
./a.out
json: a.out
./a.out --benchmark_format=json | tee benchmark_result.json
a.out: benchmark/build/src/libbenchmark.a bench.cpp fib.hpp
clang++ -std=c++14 -O3 -I ./benchmark/include -L ./benchmark/build/src/ -pthread bench.cpp -l benchmark
benchmark/build/src/libbenchmark.a: benchmark/build benchmark/googletest
cd ./benchmark/build && \
cmake -DCMAKE_BUILD_TYPE=Release -DBENCHMARK_ENABLE_TESTING=true ../ && \
make -j
benchmark/build: benchmark
mkdir -p benchmark/build
benchmark:
[ -d benchmark ] || git clone --depth=1 --single-branch --branch v1.5.0 https://github.com/google/benchmark.git benchmark
benchmark/googletest: benchmark
[ -d benchmark/googletest ] || git clone --depth=1 --single-branch --branch release-1.10.0 https://github.com/google/googletest.git benchmark/googletest
clean:
rm -rf a.out benchmark
.PHONY: bench json clean