let's not force the build server to swap out when building releases

This commit is contained in:
Grant Limberg 2020-06-23 16:48:50 -07:00
parent d3a9ce95bc
commit 65aca7d84a
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

View file

@ -4,7 +4,7 @@ TIMESTAMP=$(shell date +"%Y%m%d%H%M")
.PHONY: all
all: setup
cd ${BUILDDIR} && $(MAKE) -j$(shell getconf _NPROCESSORS_ONLN) VERBOSE=1
cd ${BUILDDIR} && $(MAKE) -j4 VERBOSE=1
setup:
mkdir -p ${BUILDDIR} && cd ${BUILDDIR} && cmake .. -DCMAKE_BUILD_TYPE=Release ${CMAKE_ARGS}