all: splash.img.tns %.o: %.S arm-none-eabi-gcc -c $^ -o $@ %.o: %.c arm-none-eabi-gcc -c $^ -o $@ splash.elf: image.o splash.o arm-none-eabi-ld $^ -o $@ -Tldscript splash.img.tns: splash.elf arm-none-eabi-objcopy -O binary $^ $@ clean: rm -f splash.img.tns splash.elf *.o .PHONY: clean