summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Cerqueira <dan.git@lispclub.com>2025-08-01 23:20:50 +0100
committerDaniel Cerqueira <dan.git@lispclub.com>2025-08-01 23:20:50 +0100
commitc5df9d66e326e03deb6d0cd00d4679821b0ffa3e (patch)
tree82bbc80a0e03e437cdc6440802c654adad1254a2 /Makefile
parent4202a717f9f4fbd3702167ffd1aae0a30279a794 (diff)
update Makefile, maybe works with clang
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files 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