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