arm/test/Makefile

30 lines
680 B
Makefile
Raw Normal View History

CC=arm-none-eabi-gcc
OBJCOPY=arm-none-eabi-objcopy
LDS=test.lds
OPTI=-O0
CFLAGS= $(OPTI) -g -gdwarf-2 -mthumb -fno-builtin -mcpu=cortex-m4 -Wall -std=c99 -ffunction-sections -fdata-sections -mabi=aapcs -fno-unroll-loops -ffast-math -ftree-vectorize -fverbose-asm
LDFLAGS=-nostartfiles -Wl,-gc-sections -T$(LDS) -L. --specs=nano.specs
all: test.bin
test.o: test.c
$(CC) $(CFLAGS) -c test.o test.c
test.elf: test.o test.lds
$(CC) $(LDFLAGS) test.o -o test.elf
test.bin: test.elf
$(OBJCOPY) -O binary -S test.elf test.bin
debug: test.bin
st-flash write test.bin 0x8000000
st-util
run: test.bin
st-flash write test.bin 0x8000000
clean:
$(RM) test.o test.elf test.bin