From a392b9fc34817c74f696c36a7dde4b0d10071f9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Wed, 21 Aug 2019 00:17:02 +0200 Subject: [PATCH] move targets around --- makefiles/targets.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/makefiles/targets.mk b/makefiles/targets.mk index 5829f8e..f4d858c 100644 --- a/makefiles/targets.mk +++ b/makefiles/targets.mk @@ -54,6 +54,10 @@ $(NIM_BINARY) update-common: | sanity-checks rm -rf $(NIMBLE_DIR) + $(MAKE) build-nim +# don't use this target, or you risk updating dependency repos that are not ready to be used in Nimbus +update-remote: + git submodule update --remote + nat-libs: | libminiupnpc.a libnatpmp.a libminiupnpc.a: | deps @@ -93,10 +97,6 @@ github-ssh: git config url."git@github.com:".insteadOf "https://github.com/" git submodule foreach --recursive 'git config url."git@github.com:".insteadOf "https://github.com/"' -# don't use this target, or you risk updating dependency repos that are not ready to be used in Nimbus -update-remote: - git submodule update --remote - # runs `git status` in all Git repos status: | $(REPOS) $(eval CMD := $(GIT_STATUS))