You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
stm32-better-blink/Makefile.final

16 lines
1.0 KiB
Makefile

#OPENCM3_DIR = /home/ledoian/Development/STM32/libopencm3/libopencm3
OPENCM3_DIR = /home/ledoian/libopencm3-examples/libopencm3-examples/libopencm3
#EXAMPLE_DIR = /home/ledoian/Development/STM32/libopencm3-examples/libopencm3-examples/stm32/f1/stm32vl-discovery
EXAMPLE_DIR = /home/ledoian/libopencm3-examples/libopencm3-examples/examples/stm32/f1/stm32vl-discovery
%.o: %.c
arm-none-eabi-gcc -Os -g -Wextra -Wshadow -Wimplicit-function-declaration -Wredundant-decls -Wmissing-prototypes -fno-common -ffunction-sections -fdata-sections -MD -Wall -Wundef -I$(OPENCM3_DIR)/include -DSTM32F1 -mthumb -mcpu=cortex-m3 -msoft-float -mfix-cortex-m3-ldrd -c $*.c -o $*.o
%.elf: %.o
arm-none-eabi-gcc --static -nostartfiles -L$(OPENCM3_DIR)/lib -T$(EXAMPLE_DIR)/stm32vl-discovery.ld -Wl,-Map=$*.map -Wl,--gc-sections -mthumb -mcpu=cortex-m3 -msoft-float -mfix-cortex-m3-ldrd $*.o -lopencm3-stm32f1 -Wl,--start-group -lc -lgcc -lnosys -Wl,--end-group -o $*.elf # FIXME: vytvořil se .map soubor?
%.bin: %.elf
arm-none-eabi-objcopy -Obinary $*.elf $*.bin