forked from who-biz/blur-api-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
35 lines (25 loc) · 931 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
28
29
30
31
32
33
34
35
# This file is only used for development for convinience functions as
# quick builds and tests
GIT_VERSION := $(shell git describe --abbrev=4 --dirty --always --tags)
.PHONY: build
build:
mkdir -p build
cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_COVERAGE=Yes .. && make -j$(nproc)
build-docker:
cd docker && make all
coverage: test
mkdir -p reports
gcovr -r . -d -e "build" -e "src/test" -e "src/examples" -e "src/stubgenerator/main.cpp" --html --html-details -o reports/coverage.html
format:
find . -name "*.h" -o -name "*.cpp" -exec clang-format -style=LLVM -i {} \;
check-format: format
git diff --exit-code
tarball:
git archive --format=tar.gz --prefix=libjson-rpc-cpp-$(GIT_VERSION)/ -o libjson-rpc-cpp-$(GIT_VERSION).tar.gz HEAD
signed-taball: tarball
gpg --armor --detach-sign libjson-rpc-cpp-$(GIT_VERSION).tar.gz
test: build
cd build && ./bin/unit_testsuite
clean:
rm -rf build
rm -rf reports