mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
10 lines
209 B
Makefile
10 lines
209 B
Makefile
wdog-disable.bin: wdog-disable.o
|
|
arm-none-eabi-objcopy -O binary -j .text.wdog_disable -S -g $^ $@
|
|
|
|
wdog-disable.o: wdog-disable.s
|
|
arm-none-eabi-as -mthumb -o $@ $^
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@rm wdog-disable.o
|