diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-03-08 17:49:06 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-03-08 17:49:06 +0000 |
| commit | 5c4659ab2958f0537414f3a299febda68670fca8 (patch) | |
| tree | d465b0a9e914fe6830ad42c2e5e77811239ff299 | |
| parent | d98520859fc61480e411f0bb922ec79a18e537a3 (diff) | |
| download | rockbox-5c4659ab2958f0537414f3a299febda68670fca8.zip rockbox-5c4659ab2958f0537414f3a299febda68670fca8.tar.gz rockbox-5c4659ab2958f0537414f3a299febda68670fca8.tar.bz2 rockbox-5c4659ab2958f0537414f3a299febda68670fca8.tar.xz | |
Correct search&replace error.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25073 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/mkamsboot/dualboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rbutil/mkamsboot/dualboot/Makefile b/rbutil/mkamsboot/dualboot/Makefile index 938e8a7..e5bca91 100644 --- a/rbutil/mkamsboot/dualboot/Makefile +++ b/rbutil/mkamsboot/dualboot/Makefile @@ -42,10 +42,10 @@ nrv2e_d8.o: nrv2e_d8.S # Rules for the ARM code embedded in mkamsboot - assemble, link, then extract # the binary code and finally convert to .h for building in mkamsboot -%.$(CROSS_PREFIX): %.o +%.arm-elf: %.o $(CROSS_PREFIX)-ld -e 0 -Ttext=0 -o $@ $< -%.arm-bin: %.$(CROSS_PREFIX) +%.arm-bin: %.arm-elf $(CROSS_PREFIX)-objcopy -O binary $< $@ ../dualboot.c ../dualboot.h: $(BOOTBINS) bin2c |