summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2015-09-16 12:14:17 -0400
committerTavian Barnes <tavianator@tavianator.com>2015-09-16 12:14:17 -0400
commit7a60efa76f4f79a118e06b640d7af9d51f8b539e (patch)
tree196cea8b45b1dd0dbf1fae5130855b3c88fa90a8
parent9298c37a78b5795ba2620b4c8b64707fb0ad5bf3 (diff)
downloadbfs-7a60efa76f4f79a118e06b640d7af9d51f8b539e.tar.xz
Use -O3 for release builds.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4ac5e6e..5a8d958 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ check: all
clean:
$(RM) bfs *.o *.d
-release: CFLAGS := -O2 -flto -Wall -DNDEBUG
+release: CFLAGS := -O3 -flto -Wall -DNDEBUG
release: bfs
.PHONY: all check clean release