From bee8deb5bc561fb694e32c04676933d53772ac3c Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Fri, 11 Aug 2023 16:31:12 +0200 Subject: Properly configure CFLAGS --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7473a93..e368746 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3