summaryrefslogtreecommitdiff
path: root/py/py.mk
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2020-07-22 14:02:26 -0500
committerJeff Epler <jepler@gmail.com>2020-07-28 16:57:48 -0500
commit9b8df7f6356aada4ce2cf89d24ea1cf635e9efe7 (patch)
treeb1cdff9e14688c209489d588f6e76accbd8423ad /py/py.mk
parent6afbefc73919ebbed3a056bfdcf7f29a7e51e169 (diff)
Upgrade ulab
This version * moves source files to reflect module structure * adds inline documentation suitable for extract_pyi * incompatibly moves spectrogram to fft * incompatibly removes "extras" There are some remaining markup errors in the specific revision of extmod/ulab but they do not prevent the doc building process from completing.
Diffstat (limited to 'py/py.mk')
-rw-r--r--py/py.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/py.mk b/py/py.mk
index 3e1d7989f..c5073d0f0 100644
--- a/py/py.mk
+++ b/py/py.mk
@@ -107,6 +107,7 @@ endif
ifeq ($(CIRCUITPY_ULAB),1)
SRC_MOD += $(patsubst $(TOP)/%,%,$(wildcard $(TOP)/extmod/ulab/code/*.c))
+SRC_MOD += $(patsubst $(TOP)/%,%,$(wildcard $(TOP)/extmod/ulab/code/*/*.c))
CFLAGS_MOD += -DCIRCUITPY_ULAB=1 -DMODULE_ULAB_ENABLED=1
$(BUILD)/extmod/ulab/code/%.o: CFLAGS += -Wno-float-equal -Wno-sign-compare -DCIRCUITPY
endif