micropython/teensy/Makefile

97 wiersze
2.1 KiB
Makefile
Czysty Zwykły widok Historia

# define main target
all: all2
# include py core make definitions
include ../py/py.mk
# program for deletion
RM = /bin/rm
2014-01-06 08:20:11 +00:00
ifeq ($(ARDUINO),)
$(error Please define ARDUINO (where TeensyDuino is installed))
endif
TOOLS_PATH = $(ARDUINO)/hardware/tools
COMPILER_PATH = $(TOOLS_PATH)/arm-none-eabi/bin
CORE_PATH = $(ARDUINO)/hardware/teensy/cores/teensy3
TARGET=TEENSY
2014-01-06 08:20:11 +00:00
AS = $(COMPILER_PATH)/arm-none-eabi-as
CC = $(COMPILER_PATH)/arm-none-eabi-gcc
LD = $(COMPILER_PATH)/arm-none-eabi-ld
OBJCOPY = $(COMPILER_PATH)/arm-none-eabi-objcopy
SIZE = $(COMPILER_PATH)/arm-none-eabi-size
CFLAGS_TEENSY = -DF_CPU=96000000 -DUSB_SERIAL -D__MK20DX256__
2014-01-06 08:20:11 +00:00
CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mcpu=cortex-m4 -fsingle-precision-constant -Wdouble-promotion $(CFLAGS_TEENSY)
CFLAGS = -I. -I$(PY_SRC) -I$(CORE_PATH) -Wall -ansi -std=gnu99 -Os -DNDEBUG $(CFLAGS_CORTEX_M4) -D$(TARGET)
2014-01-06 08:20:11 +00:00
LDFLAGS = -nostdlib -T mk20dx256.ld
LIBS = -L $(COMPILER_PATH)/../lib/gcc/arm-none-eabi/4.7.2/thumb2 -lgcc
SRC_C = \
main.c \
lcd.c \
2014-01-06 08:20:11 +00:00
led.c \
lexerfatfs.c \
usart.c \
usb.c \
STM_SRC_C = \
2014-01-06 08:20:11 +00:00
malloc0.c \
printf.c \
string0.c \
STM_SRC_S = \
2014-01-06 08:20:11 +00:00
gchelper.s \
SRC_TEENSY = \
mk20dx128.c \
pins_teensy.c \
analog.c \
usb_desc.c \
usb_dev.c \
usb_mem.c \
usb_serial.c \
yield.c \
OBJ = $(addprefix $(BUILD)/, $(SRC_C:.c=.o) $(STM_SRC_C:.c=.o) $(STM_SRC_S:.s=.o) $(SRC_TEENSY:.c=.o)) $(PY_O)
2014-01-06 08:20:11 +00:00
#LIB = -lreadline
# the following is needed for BSD
#LIB += -ltermcap
all2: $(BUILD) hex
hex: $(BUILD)/flash.hex
2014-01-06 08:20:11 +00:00
post_compile: $(BUILD)/flash.hex
$(TOOLS_PATH)/teensy_post_compile -file="$(basename $<)" -path="$(BUILD)" -tools="$(TOOLS_PATH)"
2014-01-06 08:20:11 +00:00
reboot:
-$(TOOLS_PATH)/teensy_reboot
upload: post_compile reboot
$(BUILD)/flash.elf: $(OBJ)
$(CC) $(LDFLAGS) -o "$@" -Wl,-Map,$(@:.elf=.map) $(OBJ) $(LIBS)
$(SIZE) $@
2014-01-06 08:20:11 +00:00
$(BUILD)/%.hex: $(BUILD)/%.elf
2014-01-06 08:20:11 +00:00
$(OBJCOPY) -O ihex -R .eeprom "$<" "$@"
$(BUILD)/%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
$(BUILD)/%.o: ../stm/%.s
2014-01-06 08:20:11 +00:00
$(AS) -o $@ $<
$(BUILD)/%.o: ../stm/%.c
2014-01-06 08:20:11 +00:00
$(CC) $(CFLAGS) -c -o $@ $<
$(BUILD)/%.o: $(CORE_PATH)/%.c
$(CC) $(CFLAGS) -c -o $@ $<
$(BUILD)/main.o: mpconfigport.h
clean:
/bin/rm -rf $(BUILD)
.PHONY: all all2 clean