2014-01-27 16:53:28 -05: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
|
|
|
|
PROG = micropython.exe
|
|
|
|
|
|
|
|
# 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
|
|
|
|
include ../py/py.mk
|
|
|
|
|
2015-10-19 11:22:16 -04:00
|
|
|
INC += -I.
|
2014-12-27 09:11:49 -05:00
|
|
|
INC += -I..
|
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
|
2017-03-05 07:28:27 -05:00
|
|
|
CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -std=gnu99 -DUNIX -D__USE_MINGW_ANSI_STDIO=1 $(CFLAGS_MOD) $(COPT)
|
2014-04-20 15:20:48 -04:00
|
|
|
LDFLAGS = $(LDFLAGS_MOD) -lm
|
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 = \
|
2014-04-08 09:25:47 -04:00
|
|
|
unix/main.c \
|
|
|
|
unix/file.c \
|
2014-05-07 15:15:00 -04:00
|
|
|
unix/input.c \
|
2014-09-22 05:05:42 -04:00
|
|
|
unix/modos.c \
|
2015-12-12 17:15:33 -05:00
|
|
|
unix/modmachine.c \
|
2014-05-08 04:56:33 -04:00
|
|
|
unix/modtime.c \
|
2014-06-12 11:45:41 -04:00
|
|
|
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 \
|
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
|
2015-06-01 05:41:28 -04:00
|
|
|
SRC_C += lib/mp-readline/readline.c
|
|
|
|
else ifeq ($(MICROPY_USE_READLINE),2)
|
|
|
|
CFLAGS_MOD += -DMICROPY_USE_READLINE=2
|
2014-04-20 15:20:48 -04:00
|
|
|
LDFLAGS_MOD += -lreadline
|
|
|
|
endif
|
|
|
|
|
2015-11-20 09:59:06 -05:00
|
|
|
ifeq ($(CROSS_COMPILE),x86_64-w64-mingw32-)
|
|
|
|
CFLAGS_MOD += -DMICROPY_NLR_SETJMP=1
|
|
|
|
endif
|
|
|
|
|
2014-04-20 15:20:48 -04:00
|
|
|
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 +=
|
|
|
|
|
2014-01-27 16:53:28 -05:00
|
|
|
include ../py/mkrules.mk
|