]> Joshua Wise's Git repositories - firearm.git/blobdiff - tests/Makefile
Add chip enable correctness for CellularRAM.
[firearm.git] / tests / Makefile
index 62be4ba23486dd80bf6df7d65687bd1d1f2cbd6e..774222d5b3e5289e7d3e2c2a7d9a7178c7f857a9 100644 (file)
@@ -1,10 +1,12 @@
-all: costas.hex
+CFLAGS=-mno-thumb-interwork -march=armv4
+
+all: costas.hex testbench.pad.hex testbench.hex
 
 %.o: %.c
-       arm-elf-gcc -c -o $@ $<
+       arm-elf-gcc $(CFLAGS) -c -o $@ $<
 
 %.o: %.S
-       arm-elf-gcc -c -o $@ $<
+       arm-elf-gcc $(CFLAGS) -c -o $@ $<
 
 %.elf: %.o anulib.o script.lds
        arm-elf-ld -o $@ -T script.lds anulib.o $<
@@ -12,5 +14,8 @@ all: costas.hex
 %.bin: %.elf
        arm-elf-objcopy $< -O binary $@
 
+%.pad.bin: %.bin
+       dd if=$< of=$@ bs=16384 conv=sync
+
 %.hex: %.bin
        xxd -ps -c 4 $< | sed -e 's/\(..\)\(..\)\(..\)\(..\)/\4\3\2\1/' > $@
This page took 0.023984 seconds and 4 git commands to generate.