Windows package: minor build system simplification

The “all” rule being equivalent to the “build” rule, juste delete the former
and move the latter upwards.
trustregion
Sébastien Villemot 2022-03-22 12:11:44 +01:00
parent 8c16d1745e
commit b43f9af7d1
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 4 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# Copyright © 2017-2019 Dynare Team # Copyright © 2017-2022 Dynare Team
# #
# This file is part of Dynare. # This file is part of Dynare.
# #
@ -15,11 +15,12 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Dynare. If not, see <https://www.gnu.org/licenses/>. # along with Dynare. If not, see <https://www.gnu.org/licenses/>.
.PHONY: all deps clean-deps clean clean-all install build .PHONY: build deps clean-deps clean clean-all install
NTHREADS=$(shell nproc) NTHREADS=$(shell nproc)
all: build build: deps
./build.sh
deps: deps:
make -C deps -j$(NTHREADS) make -C deps -j$(NTHREADS)
@ -34,6 +35,3 @@ clean-all: clean-deps clean
install: install:
./install-packages.sh ./install-packages.sh
build: deps
./build.sh