]> Joshua Wise's Git repositories - firearm.git/blame - tests/Makefile
Memory: Move offset, addr, and raddr to address generation block.
[firearm.git] / tests / Makefile
CommitLineData
4aa2768b
JW
1all: costas.hex
2
3%.o: %.c
f05621b7 4 arm-elf-gcc $(CFLAGS) -c -o $@ $<
4aa2768b
JW
5
6%.o: %.S
f05621b7 7 arm-elf-gcc $(CFLAGS) -c -o $@ $<
4aa2768b
JW
8
9%.elf: %.o anulib.o script.lds
10 arm-elf-ld -o $@ -T script.lds anulib.o $<
11
12%.bin: %.elf
13 arm-elf-objcopy $< -O binary $@
14
69e8e27f
JW
15%.pad.bin: %.bin
16 dd if=$< of=$@ bs=16384 conv=sync
17
4aa2768b
JW
18%.hex: %.bin
19 xxd -ps -c 4 $< | sed -e 's/\(..\)\(..\)\(..\)\(..\)/\4\3\2\1/' > $@
This page took 0.0266 seconds and 4 git commands to generate.