CFILES = gbscoundrel.c
OUTFILE = scoundrel.gb

$(OUTFILE): $(CFILES)
	zcc +gb -create-app -Os $(CFILES) -o $(OUTFILE)

clean:
	rm -f *.gb *.bin *.o
