summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-08-13 13:24:07 +0000
committerQMK Bot <hello@qmk.fm>2022-08-13 13:24:07 +0000
commitee664e0960f912876c19675b61219985abb11d0e (patch)
tree8ef5be99a1efed9c518d88d3dd0a059355163e8f /Makefile
parent853d47b4ccb05b82d9ee4653013dcbb372d6002f (diff)
parentdccb8ff7d6e2d73f0592c30e9f8498dcbf17c9e1 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index fc6d016448..a418576c07 100644
--- a/Makefile
+++ b/Makefile
@@ -429,9 +429,15 @@ lib/%:
.PHONY: git-submodule
git-submodule:
+ [ -e lib/ugfx ] && rm -rf lib/ugfx || true
+ [ -e lib/pico-sdk ] && rm -rf lib/pico-sdk || true
+ [ -e lib/chibios-contrib/ext/mcux-sdk ] && rm -rf lib/chibios-contrib/ext/mcux-sdk || true
git submodule sync --recursive
git submodule update --init --recursive --progress
+.PHONY: git-submodules
+git-submodules: git-submodule
+
.PHONY: list-keyboards
list-keyboards:
util/list_keyboards.sh | sort -u | tr '\n' ' '