From 5283037a5e665164ae9ca0fb8261758c7c1cc9d8 Mon Sep 17 00:00:00 2001 From: James Godfrey-Kittle Date: Wed, 25 Nov 2015 12:23:20 -0800 Subject: [fontcrunch] Stricter compilation of quadopt I feel like we may as well have these flags, since it compiles fine with them. --- third_party/fontcrunch/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/third_party/fontcrunch/Makefile b/third_party/fontcrunch/Makefile index 2090d39..3a073ec 100644 --- a/third_party/fontcrunch/Makefile +++ b/third_party/fontcrunch/Makefile @@ -20,7 +20,7 @@ OPT = $(patsubst %.bez, %.bezopt, $(SRC)) dummy: $(OPT) quadopt: quadopt.cc - $(CXX) $< -std=c++0x -O3 -o $@ + $(CXX) $< -std=c++0x -O3 -Werror -Wall -o $@ %.bezopt: %.bez quadopt ./quadopt $< $@ @@ -29,4 +29,4 @@ clean: rm -f quadopt find . -name '*.bez' -delete find . -name '*.bezopt' -delete - rmdir ?? \ No newline at end of file + rmdir ?? -- cgit v1.2.3