all: mmaptest
debug: mmaptest

CC=gcc
WINECC=x86_64-w64-mingw32-gcc
CFLAGS=-Wall -Os

debug: CFLAGS += -DDEBUG -g


mmaptest: main.c
	$(WINECC) $< $(CFLAGS) -mconsole -o $@

clean:
	rm -f mmaptest

# vim: syntax=make ts=4 sw=4 sts=4 sr noet
