blob: ae7118c4c592f1c18724f51e7f2ba0aee3ae56a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.SUFFIXES: .s .o .bin
all: dmg0.bin dmg.bin mgb.bin sgb.bin sgb2.bin stadium_mgb.bin stadium_cgb.bin
.s.o:
rgbasm -o $@ $<
.o.bin:
rgblink -o $@ $<
stadium_mgb.bin: stadium_mgb.o
rgblink -o $@ $<
rgbfix -f hl $@
stadium_cgb.bin: stadium_cgb.o
rgblink -o $@ $<
rgbfix -f hl $@
clean:
rm -f *.o *.bin
|