2019-11-04 19:42:59 -05:00
|
|
|
# Location of top-level MicroPython directory
|
|
|
|
MPY_DIR = ../../..
|
|
|
|
|
2022-08-18 07:40:53 -04:00
|
|
|
# Name of module (different to built-in heapq so it can coexist)
|
|
|
|
MOD = heapq_$(ARCH)
|
2019-11-04 19:42:59 -05:00
|
|
|
|
|
|
|
# Source files (.c or .py)
|
2022-08-18 07:40:53 -04:00
|
|
|
SRC = heapq.c
|
2019-11-04 19:42:59 -05:00
|
|
|
|
|
|
|
# Architecture to build for (x86, x64, armv7m, xtensa, xtensawin)
|
|
|
|
ARCH = x64
|
|
|
|
|
|
|
|
include $(MPY_DIR)/py/dynruntime.mk
|