diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |