diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-04-20 19:47:39 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-04-20 19:47:39 -0400 |
commit | c97c44d84550acdda34b07781d5b5ffab08d5336 (patch) | |
tree | 97fe21fb041cbc97eb276ddf7f38b60cddc64d09 /Makefile | |
parent | f1a5e67911f92318dab3f980808874b8369389d6 (diff) |
minor changes before 1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,8 +2,8 @@ ALL_CFLAGS=$(CFLAGS) -Wall -Wextra -Wshadow -Wconversion -Wpedantic -pedantic -s -Wno-unused-function -Wno-fixed-enum-extension -Wimplicit-fallthrough -Wno-format-truncation -Wno-unknown-warning-option LIBS=-lSDL2 -lGL -lm libpcre2-32.a DEBUG_CFLAGS=$(ALL_CFLAGS) -DDEBUG -O0 -g -RELEASE_CFLAGS=$(ALL_CFLAGS) -O3 -g -PROFILE_CFLAGS=$(ALL_CFLAGS) -O3 -g -DPROFILE=1 +RELEASE_CFLAGS=$(ALL_CFLAGS) -O3 +PROFILE_CFLAGS=$(ALL_CFLAGS) -O3 -DPROFILE=1 GLOBAL_DATA_DIR=/usr/share/ted LOCAL_DATA_DIR=/home/`logname`/.local/share/ted INSTALL_BIN_DIR=/usr/bin |