From c5df9d66e326e03deb6d0cd00d4679821b0ffa3e Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Fri, 1 Aug 2025 23:20:50 +0100 Subject: update Makefile, maybe works with clang --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f136822..7a2c567 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ PREFIX ?= /usr/local .PHONY: native native: CPPFLAGS += -DNDEBUG -native: CFLAGS += -march=native -O2 +native: CFLAGS += -O2 native: $(PROGRAM) .PHONY: generic @@ -56,7 +56,7 @@ generic: $(PROGRAM) .PHONY: all all: CPPFLAGS += -DNDEBUG -all: CFLAGS += -march=native -O2 +all: CFLAGS += -O2 all: $(PROGRAM) $(LIB) $(HTML) .PHONY: debug -- cgit