From 9f0127c3c82203d308e4230a4b32304e155d05c7 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 23 Feb 2023 18:04:49 -0500 Subject: fix cell size handling; optimize for speed --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 94d425d..560defa 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ all: $(EXEFILE) small: CXXFLAGS += -Os small: $(EXEFILE) +fast: CXXFLAGS += -O3 -march=native -mtune=native +fast: $(EXEFILE) + $(EXEFILE): $(LIBFILE) $(LIBFILE): $(OBJFILES) -- cgit v1.2.3