Skip to content
Snippets Groups Projects
Verified Commit b43f9af7 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Windows package: minor build system simplification

The “all” rule being equivalent to the “build” rule, juste delete the former
and move the latter upwards.
parent 8c16d174
No related branches found
No related tags found
No related merge requests found
# Copyright © 2017-2019 Dynare Team
# Copyright © 2017-2022 Dynare Team
#
# This file is part of Dynare.
#
......@@ -15,11 +15,12 @@
# You should have received a copy of the GNU General Public License
# 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)
all: build
build: deps
./build.sh
deps:
make -C deps -j$(NTHREADS)
......@@ -34,6 +35,3 @@ clean-all: clean-deps clean
install:
./install-packages.sh
build: deps
./build.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment