diff options
author | Thomas Voss <mail@thomasvoss.com> | 2022-10-13 02:02:08 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2022-11-13 09:22:35 +0100 |
commit | 9773399ce8a1651e1ce803a46dd0ff4049a3eef6 (patch) | |
tree | 5b858be3e597521407adf5900e62b5c312e7628a /Makefile | |
parent | fb614814a6218a7edefdb8b637a8c35aade092e1 (diff) |
Add more compile flags
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ .POSIX: -CFLAGS = -std=c11 -O3 -pipe -Wall -Wextra -Werror -pedantic +CFLAGS = \ + -Wall -Wextra -Wpedantic -Werror \ + -O3 -march=native -mtune=native -fomit-frame-pointer \ + -std=c11 -pipe LDFLAGS = -llux PREFIX = /usr |