mongoose/examples/stm32/nucleo-f746zg-make-baremetal-builtin-rndis/Makefile

54 lines
1.9 KiB
Makefile
Raw Normal View History

2023-02-14 05:40:09 +08:00
CFLAGS = -W -Wall -Wextra -Werror -Wundef -Wshadow -Wdouble-promotion
CFLAGS += -Wformat-truncation -fno-common -Wconversion -Wno-sign-conversion
CFLAGS += -g3 -Os -ffunction-sections -fdata-sections
CFLAGS += -I. -Icmsis_core/CMSIS/Core/Include -Icmsis_f7/Include
2023-11-08 03:47:04 +08:00
CFLAGS += -mcpu=cortex-m7 -mthumb -mfloat-abi=hard -mfpu=fpv5-sp-d16 $(CFLAGS_EXTRA)
2023-02-14 05:40:09 +08:00
LDFLAGS ?= -Tlink.ld -nostdlib -nostartfiles --specs nano.specs -lc -lgcc -Wl,--gc-sections -Wl,-Map=$@.map
SOURCES = main.c syscalls.c sysinit.c
SOURCES += cmsis_f7/Source/Templates/gcc/startup_stm32f746xx.s # ST startup file. Compiler-dependent!
# TinyUSB
SOURCES += tinyusb/src/tusb.c
SOURCES += tinyusb/src/common/tusb_fifo.c
SOURCES += tinyusb/src/device/usbd.c
SOURCES += tinyusb/src/device/usbd_control.c
SOURCES += tinyusb/src/class/net/ecm_rndis_device.c
SOURCES += tinyusb/src/class/net/ncm_device.c
SOURCES += tinyusb/src/portable/synopsys/dwc2/dcd_dwc2.c
SOURCES += tinyusb/lib/networking/rndis_reports.c
SOURCES += usb_descriptors.c
2022-12-24 06:28:33 +08:00
CFLAGS += -Itinyusb/src -Itinyusb/lib/networking
CFLAGS += -DSTM32F746xx
CFLAGS += -Wno-conversion -Wno-sign-conversion
2023-11-08 03:47:04 +08:00
# Mongoose options are defined in mongoose_custom.h
2023-02-14 05:40:09 +08:00
SOURCES += mongoose.c
2022-12-24 06:28:33 +08:00
ifeq ($(OS),Windows_NT)
2023-02-11 04:21:17 +08:00
RM = cmd /C del /Q /F /S
2022-12-24 06:28:33 +08:00
else
2023-02-11 04:21:17 +08:00
RM = rm -rf
2022-12-24 06:28:33 +08:00
endif
all build example: firmware.bin
firmware.bin: firmware.elf
arm-none-eabi-objcopy -O binary $< $@
2023-02-14 05:40:09 +08:00
firmware.elf: cmsis_core cmsis_f7 tinyusb $(SOURCES) hal.h link.ld
arm-none-eabi-gcc $(SOURCES) $(CFLAGS) $(LDFLAGS) -o $@
2022-12-24 06:28:33 +08:00
flash: firmware.bin
2023-02-14 05:40:09 +08:00
st-flash --reset write $< 0x8000000
cmsis_core: # ARM CMSIS core headers
git clone --depth 1 -b 5.9.0 https://github.com/ARM-software/CMSIS_5 $@
cmsis_f7: # ST CMSIS headers for STM32F7 series
git clone --depth 1 -b v1.2.8 https://github.com/STMicroelectronics/cmsis_device_f7 $@
tinyusb: # TinyUSB sources
git clone --depth 1 -b 0.14.0 https://github.com/hathach/tinyusb $@
2022-12-24 06:28:33 +08:00
clean:
2023-02-14 05:40:09 +08:00
$(RM) firmware.* cmsis_core cmsis_f7 tinyusb