diff options
author | EuAndreh <eu@euandre.org> | 2021-03-04 14:47:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-04 14:47:43 -0300 |
commit | 61c17d9d529add763fa98d591a1ed391c1b879a2 (patch) | |
tree | 914062a9d641ab4805c51b7c0c1adb99a6abf91c /Makefile | |
parent | clang-format (diff) | |
download | remembering-61c17d9d529add763fa98d591a1ed391c1b879a2.tar.gz remembering-61c17d9d529add763fa98d591a1ed391c1b879a2.tar.xz |
Makefile: Add -O3 to CFLAGS
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ .POSIX: CC = c99 -CFLAGS = -std=c99 -Wall -Wextra -Wpedantic -fPIC -g +CFLAGS = -std=c99 -Wall -Wextra -Wpedantic -fPIC -g -O3 LDFLAGS = -Wl,-rpath,$$LIBRARY_PATH LDLIBS = PREFIX = /usr/local |