diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-11 16:31:12 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-11 16:31:12 +0200 |
commit | bee8deb5bc561fb694e32c04676933d53772ac3c (patch) | |
tree | b63b32ccb4c3a4087e4cd05da3412ca570a15d8c | |
parent | 39cae09f33fda0336f32263ab0e4b01e6516b475 (diff) |
Properly configure CFLAGS
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ CC = cc -CFLAGS = -g +CFLAGS = -Wall -Wextra -Wpedantic -Werror \ + -O3 -march=native -mtune=native \ + -fomit-frame-pointer -pipe LDLIBS = -luriparser -lssl -lcrypto all: totp |