c876d3bbef
rbutil uses several components from the utils folder, and can be considered part of utils too. Having it in a separate folder is an arbitrary split that doesn't help anymore these days, so merge them. This also allows other utils to easily use libtools.make without the need to navigate to a different folder. Change-Id: I3fc2f4de19e3e776553efb5dea5f779dfec0dc21
61 lines
2.1 KiB
Makefile
61 lines
2.1 KiB
Makefile
CC=gcc
|
|
CROSS_PREFIX?=arm-elf-eabi
|
|
# Edit the following variables (plus copy/paste another set of rules) when
|
|
# adding a new target. mkamsboot.c also needs to be edited to refer to these
|
|
# new images.
|
|
|
|
BOOTOBJS = nrv2e_d8.o dualboot_clip.o dualboot_e200v2.o dualboot_c200v2.o dualboot_m200v4.o dualboot_fuze.o dualboot_clipv2.o dualboot_clipplus.o dualboot_fuzev2.o dualboot_clipzip.o
|
|
BOOTBINS = nrv2e_d8.arm-bin dualboot_clip.arm-bin dualboot_e200v2.arm-bin dualboot_c200v2.arm-bin dualboot_m200v4.arm-bin dualboot_fuze.arm-bin dualboot_clipv2.arm-bin dualboot_clipplus.arm-bin dualboot_fuzev2.arm-bin dualboot_clipzip.arm-bin
|
|
|
|
all: ../dualboot.h ../dualboot.c
|
|
|
|
# Dualboot bootloaders
|
|
|
|
dualboot_clip.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_CLIP -c -o dualboot_clip.o dualboot.S
|
|
|
|
dualboot_fuze.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_FUZE -c -o dualboot_fuze.o dualboot.S
|
|
|
|
dualboot_e200v2.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_E200V2 -c -o dualboot_e200v2.o dualboot.S
|
|
|
|
dualboot_m200v4.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_M200V4 -c -o dualboot_m200v4.o dualboot.S
|
|
|
|
dualboot_c200v2.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_C200V2 -c -o dualboot_c200v2.o dualboot.S
|
|
|
|
dualboot_clipv2.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_CLIPV2 -c -o dualboot_clipv2.o dualboot.S
|
|
|
|
dualboot_clipplus.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_CLIPPLUS -c -o dualboot_clipplus.o dualboot.S
|
|
|
|
dualboot_fuzev2.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_FUZEV2 -c -o dualboot_fuzev2.o dualboot.S
|
|
|
|
dualboot_clipzip.o: dualboot.S
|
|
$(CROSS_PREFIX)-$(CC) -DSANSA_CLIPZIP -c -o dualboot_clipzip.o dualboot.S
|
|
|
|
# Rules for the ucl unpack function
|
|
nrv2e_d8.o: nrv2e_d8.S
|
|
$(CROSS_PREFIX)-$(CC) -DPURE_THUMB -c -o 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
|
|
|
|
%.arm-elf: %.o
|
|
$(CROSS_PREFIX)-ld -e 0 -Ttext=0 -o $@ $<
|
|
|
|
%.arm-bin: %.arm-elf
|
|
$(CROSS_PREFIX)-objcopy -O binary $< $@
|
|
|
|
../dualboot.c ../dualboot.h: $(BOOTBINS) bin2c
|
|
./bin2c ../dualboot $(BOOTBINS)
|
|
|
|
bin2c: bin2c.c
|
|
$(CC) -o bin2c bin2c.c
|
|
|
|
clean:
|
|
rm -f *~ bin2c $(BOOTBINS) $(BOOTOBJS)
|