blackmagic/scripts/stubs/Makefile

13 lines
229 B
Makefile
Raw Normal View History

2011-02-04 07:25:12 +00:00
CROSS_COMPILE = stm32-
CC = $(CROSS_COMPILE)gcc
OBJCOPY = $(CROSS_COMPILE)objcopy
all: stm32_opterase.bin stm32_optprog.bin
%.bin: %.S
$(CC) -nostdlib -Wl,-Ttext,0x20000000 $<
$(OBJCOPY) -O binary a.out $@
clean:
-rm *.bin