summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2019-05-30 13:51:12 -0700
committerGitHub <noreply@github.com>2019-05-30 13:51:12 -0700
commitcbb102f541352fe4711706e656a0e9b3cc6e2f39 (patch)
treeba28a90ae0d6f6cf8a746f26fdfe9256eac391d3 /Makefile
parent812a31c78f5c2e98cbb00405ed1c185287b3306c (diff)
parent71c7aca29ca49102c0c6c01cca65e901bc0a0184 (diff)
Merge pull request #1909 from dhalbert/update-frozen-4.0.x
Update frozen libs; implement clean builds for translations which need it
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5d5d99fb8..dfb6e4b75 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.
@@ -203,3 +203,7 @@ translate: locale/circuitpython.pot
check-translate: locale/circuitpython.pot $(wildcard locale/*.po)
$(PYTHON) tools/check_translations.py $^
+
+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