summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2019-06-11 16:16:29 -0400
committerDan Halbert <halbert@halwitz.org>2019-06-11 16:16:29 -0400
commit4fc189b60c800f097db55c16768fa8c73eb72ccf (patch)
tree7829990c07bbd80c490bc03508d6e0d1c25e166b /Makefile
parentc85e111675ccfb0c03aa06bd3461f5a3c026ec87 (diff)
parent036e7a332baea537d1a0b28854393fe1790b0991 (diff)
Merge latest 4.0.x fixes into master
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 09fbf9c1a..8a4cf609f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Makefile for Sphinx documentation
+# Top-level Makefile for documentation builds and miscellaneous tasks.
#
# You can set these variables from the command line.
@@ -215,3 +215,7 @@ check-translate: locale/circuitpython.pot $(wildcard locale/*.po)
stubs:
rst2pyi $(VALIDATE) shared-bindings/ $(STUBDIR)
python setup.py sdist
+
+update-frozen-libraries:
+ @echo "Updating all frozen libraries to latest tagged version."
+ cd frozen; for library in *; do cd $$library; ../../tools/git-checkout-latest-tag.sh; cd ..; done