diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2015-07-23 21:26:31 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2015-07-23 21:26:31 -0400 |
commit | e674297be6be114a530cd06d2ca773baff1ce7cc (patch) | |
tree | a6c05b7f759c351732063624b3b84e434259e64c | |
parent | ba034f0fd6343060eb03650504fe992843bc0261 (diff) | |
download | bfs-e674297be6be114a530cd06d2ca773baff1ce7cc.tar.xz |
Disable asserts in release build.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ bfs: bfs.o bftw.o color.o clean: $(RM) bfs *.o *.d -release: CFLAGS := -O2 -flto -Wall +release: CFLAGS := -O2 -flto -Wall -DNDEBUG release: bfs .PHONY: clean release |