123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- ######################################
- # Makefile by CubeMX2Makefile.py
- ######################################
- ######################################
- # target
- ######################################
- TARGET = CardLogger
- ######################################
- # building variables
- ######################################
- # debug build?
- DEBUG = 1
- #######################################
- # pathes
- #######################################
- # Build path
- BUILD_DIR = build
- ######################################
- # source
- ######################################
- ETHERNET=ENC28J60
- #ETHERNET=WIZNET
- #ETHERNET=ETH_DISABLED
- C_SOURCES = \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.c \
- Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c \
- Src/main.c \
- Src/stm32f0xx_it.c \
- Src/system_stm32f0xx.c \
- Src/stm32f0xx_hal_msp.c
- ASM_SOURCES = \
- startup/startup_stm32f030x6.s
- #######################################
- # binaries
- #######################################
- CC = arm-none-eabi-gcc
- AS = arm-none-eabi-gcc -x assembler-with-cpp
- CP = arm-none-eabi-objcopy
- AR = arm-none-eabi-ar
- SZ = arm-none-eabi-size
- HEX = $(CP) -O ihex
- BIN = $(CP) -O binary -S
-
- #######################################
- # CFLAGS
- #######################################
- # macros for gcc
- AS_DEFS =
- C_DEFS = -D__weak="__attribute__((weak))" -D__packed="__attribute__((__packed__))" -DUSE_HAL_DRIVER -DSTM32F030x6 -D__weak="__attribute__((weak))" -D__packed="__attribute__((__packed__))" -DUSE_HAL_DRIVER -DSTM32F030x6 -DETH_MODULE=$(ETHERNET) -DETHERNET_LED_GPIO=GPIOA -DETHERNET_LED_PIN=LED_STATUS_Pin -DETHERNET_CS_GPIO=GPIOB -DETHERNET_CS_PIN=SPI1_NSS_Pin -DETHERNET_CS_DELAY=2
- # includes for gcc
- AS_INCLUDES =
- C_INCLUDES = -IInc
- C_INCLUDES += -IDrivers/CMSIS/Device/ST/STM32F0xx/Include
- C_INCLUDES += -IDrivers/CMSIS/Include
- C_INCLUDES += -IDrivers/STM32F0xx_HAL_Driver/Inc
- C_INCLUDES += -IDrivers/STM32F0xx_HAL_Driver/Inc/Legacy
- ifeq ($(ETHERNET),ENC28J60)
- C_SOURCES += Drivers/enc28j60/src/enc28j60.c
- C_SOURCES += Drivers/enc28j60/src/EtherShield.c
- C_SOURCES += Drivers/enc28j60/src/ip_arp_udp_tcp.c
- C_INCLUDES += -IDrivers/enc28j60/inc
- OPT = -O0
- endif
- ifeq ($(ETHERNET),WIZNET)
- C_SOURCES += \
- Drivers/wiznet/Ethernet/wizchip_conf.c \
- Drivers/wiznet/Ethernet/socket.c \
- Drivers/wiznet/Ethernet/W5500/w5500.c \
- C_INCLUDES += -IDrivers/wiznet
- C_INCLUDES += -IDrivers/wiznet/Ethernet
- DEBUG = 0
- endif
- # compile gcc flags
- ASFLAGS = -mthumb -mcpu=cortex-m0 $(AS_DEFS) $(AS_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
- CFLAGS = -mthumb -mcpu=cortex-m0 $(C_DEFS) $(C_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
- ifeq ($(DEBUG), 1)
- CFLAGS += -g -gdwarf-2
- else
- CFLAGS += -Os -flto
- endif
- # Generate dependency information
- CFLAGS += -std=c99 -MD -MP -MF .dep/$(@F).d
- #######################################
- # LDFLAGS
- #######################################
- # link script
- LDSCRIPT = STM32F030F4Px_FLASH.ld
- # libraries
- LIBS = -lc -lm -lnosys
- LIBDIR =
- LDFLAGS = -mthumb -mcpu=cortex-m0 -specs=nano.specs -T$(LDSCRIPT) $(LIBDIR) $(LIBS) -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref -Wl,--gc-sections
- # default action: build all
- all: $(BUILD_DIR)/$(TARGET).elf $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin
- #######################################
- # build the application
- #######################################
- # list of objects
- OBJECTS = $(addprefix $(BUILD_DIR)/,$(notdir $(C_SOURCES:.c=.o)))
- vpath %.c $(sort $(dir $(C_SOURCES)))
- # list of ASM program objects
- OBJECTS += $(addprefix $(BUILD_DIR)/,$(notdir $(ASM_SOURCES:.s=.o)))
- vpath %.s $(sort $(dir $(ASM_SOURCES)))
- $(BUILD_DIR)/%.o: %.c Makefile | $(BUILD_DIR)
- $(CC) -c $(CFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.c=.lst)) $< -o $@
- $(BUILD_DIR)/%.o: %.s Makefile | $(BUILD_DIR)
- $(AS) -c $(CFLAGS) $< -o $@
- $(BUILD_DIR)/$(TARGET).elf: $(OBJECTS) Makefile
- $(CC) $(OBJECTS) $(LDFLAGS) -o $@
- $(SZ) $@
- $(BUILD_DIR)/%.hex: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
- $(HEX) $< $@
-
- $(BUILD_DIR)/%.bin: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
- $(BIN) $< $@
-
- $(BUILD_DIR):
- mkdir -p $@
- #######################################
- # clean up
- #######################################
- clean:
- -rm -fR .dep $(BUILD_DIR)
-
- #######################################
- # dependencies
- #######################################
- -include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
- .PHONY: clean all
- # *** EOF ***
|