CFLAGS = -O3 -Wall -fstrict-aliasing -std=c99

test:main
	./main -f pb16-81


main:main.c 
	$(CC) $(CFLAGS) main.c -o $@
