mirror of https://github.com/openXC7/prjxray.git
Rename 'make go' to 'make build'
Signed-off-by: Rick Altherr <kc8apf@kc8apf.net>
This commit is contained in:
parent
d1ea210dba
commit
7980e069dd
6
Makefile
6
Makefile
|
|
@ -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 {} \;
|
||||
|
|
|
|||
Loading…
Reference in New Issue