summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rbutil/mkamsboot/dualboot/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/rbutil/mkamsboot/dualboot/Makefile b/rbutil/mkamsboot/dualboot/Makefile
index 938e8a7d50..e5bca91e21 100644
--- a/rbutil/mkamsboot/dualboot/Makefile
+++ b/rbutil/mkamsboot/dualboot/Makefile
@@ -42,10 +42,10 @@ nrv2e_d8.o: nrv2e_d8.S
42# Rules for the ARM code embedded in mkamsboot - assemble, link, then extract 42# Rules for the ARM code embedded in mkamsboot - assemble, link, then extract
43# the binary code and finally convert to .h for building in mkamsboot 43# the binary code and finally convert to .h for building in mkamsboot
44 44
45%.$(CROSS_PREFIX): %.o 45%.arm-elf: %.o
46 $(CROSS_PREFIX)-ld -e 0 -Ttext=0 -o $@ $< 46 $(CROSS_PREFIX)-ld -e 0 -Ttext=0 -o $@ $<
47 47
48%.arm-bin: %.$(CROSS_PREFIX) 48%.arm-bin: %.arm-elf
49 $(CROSS_PREFIX)-objcopy -O binary $< $@ 49 $(CROSS_PREFIX)-objcopy -O binary $< $@
50 50
51../dualboot.c ../dualboot.h: $(BOOTBINS) bin2c 51../dualboot.c ../dualboot.h: $(BOOTBINS) bin2c