2017-09-06 00:09:13 -04:00
|
|
|
include ../../py/mkenv.mk
|
2014-04-20 15:20:48 -04:00
|
|
|
-include mpconfigport.mk
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
# define main target
|
2019-08-10 04:47:56 -04:00
|
|
|
PROG = micropython
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
# qstr definitions (must come before including py.mk)
|
2014-04-08 09:25:47 -04:00
|
|
|
QSTR_DEFS = ../unix/qstrdefsport.h
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
# include py core make definitions
|
2017-08-10 22:22:19 -04:00
|
|
|
include $(TOP)/py/py.mk
|
2014-01-27 16:53:28 -05:00
|
|
|
|
2015-10-19 11:22:16 -04:00
|
|
|
INC += -I.
|
2017-08-10 22:22:19 -04:00
|
|
|
INC += -I$(TOP)
|
2014-04-17 13:03:27 -04:00
|
|
|
INC += -I$(BUILD)
|
2014-04-16 17:10:33 -04:00
|
|
|
|
2014-01-27 16:53:28 -05:00
|
|
|
# compiler settings
|
2020-04-09 07:59:11 -04:00
|
|
|
CFLAGS = $(INC) -Wall -Wpointer-arith -Wdouble-promotion -Werror -std=gnu99 -DUNIX -D__USE_MINGW_ANSI_STDIO=1 $(CFLAGS_MOD) $(COPT) $(CFLAGS_EXTRA)
|
2019-09-05 20:56:03 -04:00
|
|
|
LDFLAGS = $(LDFLAGS_MOD) -lm $(LDFLAGS_EXTRA)
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
# Debugging/Optimization
|
|
|
|
ifdef DEBUG
|
2014-04-20 15:20:48 -04:00
|
|
|
CFLAGS += -g
|
|
|
|
COPT = -O0
|
2014-01-27 16:53:28 -05:00
|
|
|
else
|
2014-04-20 15:20:48 -04:00
|
|
|
COPT = -Os #-DNDEBUG
|
2014-01-27 16:53:28 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
# source files
|
|
|
|
SRC_C = \
|
2021-07-09 00:19:15 -04:00
|
|
|
shared/libc/printf.c \
|
|
|
|
shared/runtime/gchelper_generic.c \
|
2017-09-06 00:09:13 -04:00
|
|
|
ports/unix/main.c \
|
|
|
|
ports/unix/input.c \
|
|
|
|
ports/unix/modos.c \
|
|
|
|
ports/unix/modmachine.c \
|
|
|
|
ports/unix/modtime.c \
|
|
|
|
ports/unix/gccollect.c \
|
2015-06-01 05:41:28 -04:00
|
|
|
windows_mphal.c \
|
2014-05-03 04:26:04 -04:00
|
|
|
realpath.c \
|
2014-05-03 05:28:29 -04:00
|
|
|
init.c \
|
2014-05-08 04:56:33 -04:00
|
|
|
sleep.c \
|
2017-08-14 06:01:38 -04:00
|
|
|
fmode.c \
|
2019-09-05 20:56:03 -04:00
|
|
|
$(SRC_MOD)
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
|
2014-04-20 15:20:48 -04:00
|
|
|
|
|
|
|
ifeq ($(MICROPY_USE_READLINE),1)
|
|
|
|
CFLAGS_MOD += -DMICROPY_USE_READLINE=1
|
2021-07-09 00:19:15 -04:00
|
|
|
SRC_C += shared/readline/readline.c
|
2014-04-20 15:20:48 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
LIB += -lws2_32
|
2014-01-27 16:53:28 -05:00
|
|
|
|
py: Add rules for automated extraction of qstrs from sources.
- add template rule that converts a specified source file into a qstring file
- add special rule for generating a central header that contains all
extracted/autogenerated strings - defined by QSTR_DEFS_COLLECTED
variable. Each platform appends a list of sources that may contain
qstrings into a new build variable: SRC_QSTR. Any autogenerated
prerequisities are should be appened to SRC_QSTR_AUTO_DEPS variable.
- remove most qstrings from py/qstrdefs, keep only qstrings that
contain special characters - these cannot be easily detected in the
sources without additional annotations
- remove most manual qstrdefs, use qstrdef autogen for: py, cc3200,
stmhal, teensy, unix, windows, pic16bit:
- remove all micropython generic qstrdefs except for the special strings that contain special characters (e.g. /,+,<,> etc.)
- remove all port specific qstrdefs except for special strings
- append sources for qstr generation in platform makefiles (SRC_QSTR)
2016-03-10 04:22:41 -05:00
|
|
|
# List of sources for qstr extraction
|
|
|
|
SRC_QSTR += $(SRC_C)
|
|
|
|
# Append any auto-generated sources that are needed by sources listed in
|
|
|
|
# SRC_QSTR
|
|
|
|
SRC_QSTR_AUTO_DEPS +=
|
|
|
|
|
2020-09-10 08:13:25 -04:00
|
|
|
ifneq ($(FROZEN_MANIFEST),)
|
|
|
|
CFLAGS += -DMICROPY_QSTR_EXTRA_POOL=mp_qstr_frozen_const_pool -DMICROPY_MODULE_FROZEN_MPY=1 -DMPZ_DIG_SIZE=16
|
|
|
|
MPY_CROSS_FLAGS += -mcache-lookup-bc
|
|
|
|
endif
|
|
|
|
|
2017-08-10 22:22:19 -04:00
|
|
|
include $(TOP)/py/mkrules.mk
|