diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-23 18:04:49 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-23 18:04:49 -0500 |
commit | 9f0127c3c82203d308e4230a4b32304e155d05c7 (patch) | |
tree | 0f3952bdb308348cc913d842262a2f3872963d63 /Makefile | |
parent | 1815716fc702a745cf37db84757ab56a0d923f45 (diff) |
fix cell size handling; optimize for speed
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ all: $(EXEFILE) small: CXXFLAGS += -Os small: $(EXEFILE) +fast: CXXFLAGS += -O3 -march=native -mtune=native +fast: $(EXEFILE) + $(EXEFILE): $(LIBFILE) $(LIBFILE): $(OBJFILES) |