summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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