.PHONY: all release debug
all:
	gcc -O3 -Wall -Wextra -static -static-libgcc get_mapper.c md5.c -o get_mapper.exe
release:
	gcc -O3 -Wall -Wextra -static -static-libgcc get_mapper.c md5.c -o get_mapper.exe -DNDEBUG
debug:
	gcc -g3 -Wall -Wextra -static -static-libgcc get_mapper.c md5.c -o get_mapper.exe
