Rename 'make go' to 'make build'

Signed-off-by: Rick Altherr <kc8apf@kc8apf.net>
This commit is contained in:
Rick Altherr 2018-02-05 17:51:32 -08:00
parent d1ea210dba
commit 7980e069dd
1 changed files with 2 additions and 4 deletions

View File

@ -1,11 +1,9 @@
JOBS ?= $(shell nproc)
JOBS ?= 2
CLANG_FORMAT ?= clang-format
go:
build:
git submodule update --init --recursive
mkdir -p build
cd build; cmake ..; make -j$(JOBS)
cd build; cmake ..; $(MAKE)
format:
find . -name \*.cc -and -not -path './third_party/*' -and -not -path './.git/*' -exec $(CLANG_FORMAT) -style=file -i {} \;