summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2019-05-28 09:09:00 -0400
committerDan Halbert <halbert@halwitz.org>2019-05-28 09:09:00 -0400
commit71c7aca29ca49102c0c6c01cca65e901bc0a0184 (patch)
treeec32d8191de0e4898743c6a228db7cc566d6e787 /Makefile
parent4e85c1ef91683929df0afe105e92ce6e4291b445 (diff)
Add top-level Makefile target to update frozen libs easily; Update CPX lib
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