summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2022-08-18 21:40:53 +1000
committerJim Mussared <jim.mussared@gmail.com>2023-06-08 17:54:24 +1000
commiteb85f4d4c9c332c8e7bef9b20bb06e25f6f6c5d2 (patch)
tree4f5285fc4ed6fdb616401b9ceb3f95f58698dcf0 /examples
parent2eba98f1e0d292de0f7e48ce228221ef50c01967 (diff)
examples/natmod: Rename umodule to module.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/natmod/heapq/Makefile (renamed from examples/natmod/uzlib/Makefile)6
-rw-r--r--examples/natmod/heapq/heapq.c (renamed from examples/natmod/uheapq/uheapq.c)0
-rw-r--r--examples/natmod/random/Makefile (renamed from examples/natmod/uheapq/Makefile)6
-rw-r--r--examples/natmod/random/random.c (renamed from examples/natmod/urandom/urandom.c)0
-rw-r--r--examples/natmod/re/Makefile (renamed from examples/natmod/ure/Makefile)6
-rw-r--r--examples/natmod/re/re.c (renamed from examples/natmod/ure/ure.c)0
-rw-r--r--examples/natmod/zlib/Makefile (renamed from examples/natmod/urandom/Makefile)6
-rw-r--r--examples/natmod/zlib/zlib.c (renamed from examples/natmod/uzlib/uzlib.c)0
8 files changed, 12 insertions, 12 deletions
diff --git a/examples/natmod/uzlib/Makefile b/examples/natmod/heapq/Makefile
index 8761caf2d..af45b472d 100644
--- a/examples/natmod/uzlib/Makefile
+++ b/examples/natmod/heapq/Makefile
@@ -1,11 +1,11 @@
# Location of top-level MicroPython directory
MPY_DIR = ../../..
-# Name of module (different to built-in uzlib so it can coexist)
-MOD = uzlib_$(ARCH)
+# Name of module (different to built-in heapq so it can coexist)
+MOD = heapq_$(ARCH)
# Source files (.c or .py)
-SRC = uzlib.c
+SRC = heapq.c
# Architecture to build for (x86, x64, armv7m, xtensa, xtensawin)
ARCH = x64
diff --git a/examples/natmod/uheapq/uheapq.c b/examples/natmod/heapq/heapq.c
index ed19652a6..ed19652a6 100644
--- a/examples/natmod/uheapq/uheapq.c
+++ b/examples/natmod/heapq/heapq.c
diff --git a/examples/natmod/uheapq/Makefile b/examples/natmod/random/Makefile
index 55de3cc08..5c50227b1 100644
--- a/examples/natmod/uheapq/Makefile
+++ b/examples/natmod/random/Makefile
@@ -1,11 +1,11 @@
# Location of top-level MicroPython directory
MPY_DIR = ../../..
-# Name of module (different to built-in uheapq so it can coexist)
-MOD = uheapq_$(ARCH)
+# Name of module (different to built-in random so it can coexist)
+MOD = random_$(ARCH)
# Source files (.c or .py)
-SRC = uheapq.c
+SRC = random.c
# Architecture to build for (x86, x64, armv7m, xtensa, xtensawin)
ARCH = x64
diff --git a/examples/natmod/urandom/urandom.c b/examples/natmod/random/random.c
index 92257b8bc..92257b8bc 100644
--- a/examples/natmod/urandom/urandom.c
+++ b/examples/natmod/random/random.c
diff --git a/examples/natmod/ure/Makefile b/examples/natmod/re/Makefile
index f5254298f..1ba540110 100644
--- a/examples/natmod/ure/Makefile
+++ b/examples/natmod/re/Makefile
@@ -1,11 +1,11 @@
# Location of top-level MicroPython directory
MPY_DIR = ../../..
-# Name of module (different to built-in ure so it can coexist)
-MOD = ure_$(ARCH)
+# Name of module (different to built-in re so it can coexist)
+MOD = re_$(ARCH)
# Source files (.c or .py)
-SRC = ure.c
+SRC = re.c
# Architecture to build for (x86, x64, armv7m, xtensa, xtensawin)
ARCH = x64
diff --git a/examples/natmod/ure/ure.c b/examples/natmod/re/re.c
index df89ea835..df89ea835 100644
--- a/examples/natmod/ure/ure.c
+++ b/examples/natmod/re/re.c
diff --git a/examples/natmod/urandom/Makefile b/examples/natmod/zlib/Makefile
index 3f018baaf..e4b4e0712 100644
--- a/examples/natmod/urandom/Makefile
+++ b/examples/natmod/zlib/Makefile
@@ -1,11 +1,11 @@
# Location of top-level MicroPython directory
MPY_DIR = ../../..
-# Name of module (different to built-in urandom so it can coexist)
-MOD = urandom_$(ARCH)
+# Name of module (different to built-in zlib so it can coexist)
+MOD = zlib_$(ARCH)
# Source files (.c or .py)
-SRC = urandom.c
+SRC = zlib.c
# Architecture to build for (x86, x64, armv7m, xtensa, xtensawin)
ARCH = x64
diff --git a/examples/natmod/uzlib/uzlib.c b/examples/natmod/zlib/zlib.c
index 2b0dbd5ca..2b0dbd5ca 100644
--- a/examples/natmod/uzlib/uzlib.c
+++ b/examples/natmod/zlib/zlib.c