2016-02-11 22:37:26 +00:00
|
|
|
include ../py/mkenv.mk
|
|
|
|
|
|
|
|
# define main target
|
|
|
|
PROG = mpy-cross
|
|
|
|
|
|
|
|
# qstr definitions (must come before including py.mk)
|
|
|
|
QSTR_DEFS = qstrdefsport.h
|
|
|
|
|
|
|
|
# OS name, for simple autoconfig
|
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
|
|
|
|
# include py core make definitions
|
|
|
|
include ../py/py.mk
|
|
|
|
|
|
|
|
INC += -I.
|
|
|
|
INC += -I..
|
|
|
|
INC += -I$(BUILD)
|
|
|
|
|
|
|
|
# compiler settings
|
|
|
|
CWARN = -Wall -Werror
|
|
|
|
CWARN += -Wpointer-arith -Wuninitialized
|
|
|
|
CFLAGS = $(INC) $(CWARN) -ansi -std=gnu99 $(CFLAGS_MOD) $(COPT) $(CFLAGS_EXTRA)
|
|
|
|
CFLAGS += -fdata-sections -ffunction-sections -fno-asynchronous-unwind-tables
|
|
|
|
|
|
|
|
# Debugging/Optimization
|
|
|
|
ifdef DEBUG
|
|
|
|
CFLAGS += -g
|
|
|
|
COPT = -O0
|
|
|
|
else
|
|
|
|
COPT = -Os #-DNDEBUG
|
|
|
|
endif
|
|
|
|
|
|
|
|
# On OSX, 'gcc' is a symlink to clang unless a real gcc is installed.
|
|
|
|
# The unix port of micropython on OSX must be compiled with clang,
|
|
|
|
# while cross-compile ports require gcc, so we test here for OSX and
|
|
|
|
# if necessary override the value of 'CC' set in py/mkenv.mk
|
|
|
|
ifeq ($(UNAME_S),Darwin)
|
|
|
|
CC = clang
|
|
|
|
# Use clang syntax for map file
|
2016-07-08 23:02:02 +00:00
|
|
|
LDFLAGS_ARCH = -Wl,-map,$@.map -Wl,-dead_strip
|
2016-02-11 22:37:26 +00:00
|
|
|
else
|
|
|
|
# Use gcc syntax for map file
|
2016-07-08 23:02:02 +00:00
|
|
|
LDFLAGS_ARCH = -Wl,-Map=$@.map,--cref -Wl,--gc-sections
|
2016-02-11 22:37:26 +00:00
|
|
|
endif
|
|
|
|
LDFLAGS = $(LDFLAGS_MOD) $(LDFLAGS_ARCH) -lm $(LDFLAGS_EXTRA)
|
|
|
|
|
|
|
|
# source files
|
|
|
|
SRC_C = \
|
|
|
|
main.c \
|
|
|
|
gccollect.c \
|
|
|
|
|
2016-07-22 09:54:26 +00:00
|
|
|
ifeq ($(OS),Windows_NT)
|
2016-07-25 12:45:57 +00:00
|
|
|
ifeq (,$(findstring MSYS,$(UNAME_S)))
|
|
|
|
SRC_C += windows/fmode.c
|
|
|
|
endif
|
2016-07-22 09:54:26 +00:00
|
|
|
endif
|
|
|
|
|
2016-02-11 22:37:26 +00:00
|
|
|
OBJ = $(PY_O)
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
|
|
|
|
|
|
|
|
include ../py/mkrules.mk
|