PythonExtra/windows/Makefile

49 lines
856 B
Makefile
Raw Normal View History

2014-01-27 22:53:28 +01:00
include ../py/mkenv.mk
-include mpconfigport.mk
2014-01-27 22:53:28 +01:00
# define main target
PROG = micropython.exe
# qstr definitions (must come before including py.mk)
QSTR_DEFS = ../unix/qstrdefsport.h
2014-01-27 22:53:28 +01:00
# include py core make definitions
include ../py/py.mk
INC = -I.
INC += -I$(PY_SRC)
INC += -I$(BUILD)
2014-01-27 22:53:28 +01:00
# compiler settings
CFLAGS = $(INC) -Wall -Werror -ansi -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT)
LDFLAGS = $(LDFLAGS_MOD) -lm
2014-01-27 22:53:28 +01:00
# Debugging/Optimization
ifdef DEBUG
CFLAGS += -g
COPT = -O0
2014-01-27 22:53:28 +01:00
else
COPT = -Os #-DNDEBUG
2014-01-27 22:53:28 +01:00
endif
# source files
SRC_C = \
unix/main.c \
unix/file.c \
realpath.c \
2014-01-27 22:53:28 +01:00
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
ifeq ($(MICROPY_USE_READLINE),1)
CFLAGS_MOD += -DMICROPY_USE_READLINE=1
LDFLAGS_MOD += -lreadline
2014-01-27 22:53:28 +01:00
# the following is needed for BSD
#LDFLAGS_MOD += -ltermcap
endif
LIB += -lws2_32
#LIB += -lmman
2014-01-27 22:53:28 +01:00
include ../py/mkrules.mk