tetros/Makefile
2016-10-01 19:12:20 +02:00

15 lines
445 B
Makefile

all: tetros.img
tetros.img: tetros.asm Makefile
nasm -d DEBUG -f bin tetros.asm -o tetros.img
@echo "size is" `stat -c "%s" tetros.img`
@if [ `stat -c "%s" tetros.img` -gt 446 ]; then \
bash -c 'echo -e "\e[91mOutput exceeded size of 446 bytes.\e[0m"'; \
rm -f tetros.img; exit 1; fi
nasm -f bin tetros.asm -o tetros.img
run: tetros.img
@qemu-system-i386 -drive file=tetros.img,index=0,media=disk,format=raw
clean:
rm -f tetros.img