Index: Makefile ================================================================== --- Makefile +++ Makefile @@ -3,11 +3,10 @@ clean: rm aocdbg aoc aocdbg: *.c *.h gcc -std=c99 -pedantic -pedantic-errors \ - -D_XOPEN_SOURCE=800 \ -Werror -Wall -Wextra \ -Wc99-c11-compat \ -Wc11-c2x-compat \ -Wbad-function-cast \ -Wcast-align \ @@ -38,10 +37,9 @@ *.c \ -o aocdbg aoc: *.c *.h gcc -std=c99 -pedantic -pedantic-errors \ - -D_XOPEN_SOURCE=800 \ -flto -fno-omit-frame-pointer -ffloat-store -fno-common -fstrict-aliasing \ -O3 -DNDEBUG \ *.c \ -o aoc