aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefiles/c.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefiles/c.mk b/Makefiles/c.mk
index e890ad0..279f61b 100644
--- a/Makefiles/c.mk
+++ b/Makefiles/c.mk
@@ -4,7 +4,7 @@ CC = cc
CFLAGS = \
-Wall -Wextra -Wpedantic -Werror \
-march=native -mtune=native -O3 -flto \
- -pipe
+ -pipe -D_GNU_SOURCE
ALL = ${CC} ${CFLAGS} ${CPPFLAGS} ${LDLIBS}
@@ -18,4 +18,4 @@ all:
if [ -f puzzle-2.c ]; then ${ALL} -o puzzle-2 puzzle-2.c; fi
clean:
- rm -f puzzle-[12] \ No newline at end of file
+ rm -f puzzle-[12]