]> Joshua Wise's Git repositories - fpgaboy.git/blob - Makefile
Fuck shell scripts, we use makefiles here
[fpgaboy.git] / Makefile
1 all: CoreTop.svf
2
3 CoreTop_rom.bit: rom.hex CoreTop.bit foo_bd.bmm
4         data2mem -bm foo_bd.bmm -bd rom.mem -bt CoreTop.bit -o b CoreTop_rom.bit
5
6 CoreTop.svf: CoreTop_rom.bit rom.hex impact.cmd
7         impact -batch impact.cmd
8
9 rom.o: rom.asm
10         rgbasm -orom.o rom.asm
11
12 rom.bin: rom.o rom.lnk
13         xlink rom.lnk
14
15 rom.hex: rom.bin
16         ./mashrom < rom.bin > rom.hex
This page took 0.025199 seconds and 4 git commands to generate.