summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-05-04 14:41:09 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2021-05-04 14:41:09 -0400
commit6fb841710498e1b854204287e6a8c7b2a0bd3b5c (patch)
treee2ed6e2daee671295e0f14e916e00215b0996f3c /Makefile
parent995ebf6366caaac08107f1ba175d476bbca6e7c4 (diff)
multiple data types
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5c2d3e2..e77e7c1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
ALL_CFLAGS=$(CFLAGS) -Wall -Wextra -Wshadow -Wconversion -Wpedantic -pedantic -std=gnu99 \
-Wno-unused-function -Wno-unused-parameter -Wimplicit-fallthrough -Wno-format-truncation -Wno-unknown-warning-option \
- `pkg-config --libs --cflags gtk+-3.0` -rdynamic
+ `pkg-config --libs --cflags gtk+-3.0` -rdynamic -fno-strict-aliasing
DEBUG_CFLAGS=$(ALL_CFLAGS) -DDEBUG -O0 -g
RELEASE_CFLAGS=$(ALL_CFLAGS) -Ofast -g
PROFILE_CFLAGS=$(ALL_CFLAGS) -Ofast -g -DPROFILE=1