.PHONY: all release debug
all:
	gcc -O2 -Wall -Wextra -static -static-libgcc ./main.c -o arg_example.exe
release:
	gcc -O2 -Wall -Wextra -static -static-libgcc ./main.c -o arg_example.exe -DNDEBUG
debug:
	gcc -g3 -Wall -Wextra -static -static-libgcc ./main.c -o arg_example.exe