summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2020-05-14 15:57:35 -0700
committerScott Shawcroft <scott@tannewt.org>2020-05-14 15:58:36 -0700
commitafc84c2fd115aa1c7a80bd5d83834c30c4563a6c (patch)
tree1d2fff919cb8230a673debefe1daee2a8a4e84e5 /Makefile
parentb477c4812d1f0d0ed0fe56abcdcaa356cc3a652e (diff)
Fix ulab, math and template.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1971076a3..842c18da5 100644
--- a/Makefile
+++ b/Makefile
@@ -67,6 +67,7 @@ help:
clean:
rm -rf $(BUILDDIR)/*
+ rm -rf autoapi
rm -rf $(STUBDIR) $(DISTDIR) *.egg-info
html: stubs
@@ -213,10 +214,10 @@ check-translate: locale/circuitpython.pot $(wildcard locale/*.po)
$(PYTHON) tools/check_translations.py $^
stubs:
- mkdir -p circuitpython-stubs
- python tools/extract_pyi.py shared-bindings/ $(STUBDIR)
- python tools/extract_pyi.py ports/atmel-samd/bindings $(STUBDIR)
- python setup.py sdist
+ @mkdir -p circuitpython-stubs
+ @$(PYTHON) tools/extract_pyi.py shared-bindings/ $(STUBDIR)
+ @$(PYTHON) tools/extract_pyi.py ports/atmel-samd/bindings $(STUBDIR)
+ @$(PYTHON) setup.py -q sdist
update-frozen-libraries:
@echo "Updating all frozen libraries to latest tagged version."