2014-01-28 01:53:28 +04:00
|
|
|
include ../py/mkenv.mk
|
2014-04-20 23:20:48 +04:00
|
|
|
-include mpconfigport.mk
|
2014-01-28 01:53:28 +04:00
|
|
|
|
|
|
|
# define main target
|
|
|
|
PROG = micropython.exe
|
|
|
|
|
|
|
|
# qstr definitions (must come before including py.mk)
|
2014-04-08 17:25:47 +04:00
|
|
|
QSTR_DEFS = ../unix/qstrdefsport.h
|
2014-01-28 01:53:28 +04:00
|
|
|
|
|
|
|
# include py core make definitions
|
|
|
|
include ../py/py.mk
|
|
|
|
|
2015-10-19 18:22:16 +03:00
|
|
|
INC += -I.
|
2014-12-27 17:11:49 +03:00
|
|
|
INC += -I..
|
2014-04-17 21:03:27 +04:00
|
|
|
INC += -I$(BUILD)
|
2014-04-17 01:10:33 +04:00
|
|
|
|
2014-01-28 01:53:28 +04:00
|
|
|
# compiler settings
|
2014-12-06 22:51:30 +03:00
|
|
|
CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -DUNIX -D__USE_MINGW_ANSI_STDIO=1 $(CFLAGS_MOD) $(COPT)
|
2014-04-20 23:20:48 +04:00
|
|
|
LDFLAGS = $(LDFLAGS_MOD) -lm
|
2014-01-28 01:53:28 +04:00
|
|
|
|
|
|
|
# Debugging/Optimization
|
|
|
|
ifdef DEBUG
|
2014-04-20 23:20:48 +04:00
|
|
|
CFLAGS += -g
|
|
|
|
COPT = -O0
|
2014-01-28 01:53:28 +04:00
|
|
|
else
|
2014-04-20 23:20:48 +04:00
|
|
|
COPT = -Os #-DNDEBUG
|
2014-01-28 01:53:28 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
# source files
|
|
|
|
SRC_C = \
|
2014-04-08 17:25:47 +04:00
|
|
|
unix/main.c \
|
|
|
|
unix/file.c \
|
2014-05-07 23:15:00 +04:00
|
|
|
unix/input.c \
|
2014-09-22 13:05:42 +04:00
|
|
|
unix/modos.c \
|
2015-12-13 01:15:33 +03:00
|
|
|
unix/modmachine.c \
|
2014-05-08 12:56:33 +04:00
|
|
|
unix/modtime.c \
|
2014-06-12 19:45:41 +04:00
|
|
|
unix/gccollect.c \
|
2015-06-01 12:41:28 +03:00
|
|
|
windows_mphal.c \
|
2014-05-03 12:26:04 +04:00
|
|
|
realpath.c \
|
2014-05-03 13:28:29 +04:00
|
|
|
init.c \
|
2014-05-08 12:56:33 +04:00
|
|
|
sleep.c \
|
2014-01-28 01:53:28 +04:00
|
|
|
|
|
|
|
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
|
2014-04-20 23:20:48 +04:00
|
|
|
|
|
|
|
ifeq ($(MICROPY_USE_READLINE),1)
|
|
|
|
CFLAGS_MOD += -DMICROPY_USE_READLINE=1
|
2015-06-01 12:41:28 +03:00
|
|
|
SRC_C += lib/mp-readline/readline.c
|
|
|
|
else ifeq ($(MICROPY_USE_READLINE),2)
|
|
|
|
CFLAGS_MOD += -DMICROPY_USE_READLINE=2
|
2014-04-20 23:20:48 +04:00
|
|
|
LDFLAGS_MOD += -lreadline
|
|
|
|
endif
|
|
|
|
|
2015-11-20 17:59:06 +03:00
|
|
|
ifeq ($(CROSS_COMPILE),x86_64-w64-mingw32-)
|
|
|
|
CFLAGS_MOD += -DMICROPY_NLR_SETJMP=1
|
|
|
|
endif
|
|
|
|
|
2014-04-20 23:20:48 +04:00
|
|
|
LIB += -lws2_32
|
2014-01-28 01:53:28 +04:00
|
|
|
|
|
|
|
include ../py/mkrules.mk
|