diff options
| author | Daniel Cerqueira <dan.git@lispclub.com> | 2025-08-01 23:20:50 +0100 |
|---|---|---|
| committer | Daniel Cerqueira <dan.git@lispclub.com> | 2025-08-01 23:20:50 +0100 |
| commit | c5df9d66e326e03deb6d0cd00d4679821b0ffa3e (patch) | |
| tree | 82bbc80a0e03e437cdc6440802c654adad1254a2 | |
| parent | 4202a717f9f4fbd3702167ffd1aae0a30279a794 (diff) | |
update Makefile, maybe works with clang
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
