Added -Wall and -Wextra to example/Makefile

This commit is contained in:
yhirose 2017-12-03 21:25:50 -05:00
parent 9bc2883090
commit 3dded8c3e3

View File

@ -1,6 +1,6 @@
CC = clang++ CC = clang++
CFLAGS = -std=c++14 -I.. CFLAGS = -std=c++14 -I.. -Wall -Wextra
#OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -lssl -lcrypto #OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -lssl -lcrypto
all: server client hello simplesvr benchmark all: server client hello simplesvr benchmark