X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=ld45_start_nothing;a=blobdiff_plain;f=Makefile;fp=Makefile;h=90ea9dadd7798022a418ce6dfaba5dc2c00613b3;hp=6d20b2892cca5c9c8759bd3c944852115771e56e;hb=6a16a1c526937ee551f968901cb949d55e35ecda;hpb=778d7ca8d282c31b4067f6a6e06df7be72822ea1 diff --git a/Makefile b/Makefile index 6d20b28..90ea9da 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ src = $(wildcard src/*.asm) +data = data/sprsheet.inc bin = game QEMU_FLAGS = -fda floppy.img -serial file:serial.log -soundhw sb16 -d guest_errors @@ -9,7 +10,7 @@ all: floppy.img bootldr: src/boot/boot.asm $(bin) nasm -o $@ -f bin -DBINSIZE=`ls -l $(bin) | awk '{print $$5}'` $< -$(bin): $(src) +$(bin): $(src) $(data) nasm -o $@ -f bin -i src/ src/main.asm boot.img: bootldr $(bin) @@ -19,6 +20,9 @@ floppy.img: boot.img dd of=$@ if=/dev/zero bs=512 count=2880 dd of=$@ if=$< bs=1 conv=notrunc +data/sprsheet.inc: data/sprsheet.png + img2tiles -o $@ -n -t 32x32 $< + .PHONY: clean clean: rm -f $(bin) bootldr floppy.img boot.img