aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-07-31 00:50:38 +0900
committeripknHama <ipknhama@gmail.com>2014-08-02 22:32:48 +0900
commit2e8f9f383d3ebc78fb2cb8ad37ad855ac28d11dd (patch)
tree43a9aa78cde60fe55fde5735f40dae7c34405df8 /Makefile
parente68f5db64fc2e2f54184d3eef446520a2c2379f9 (diff)
downloadcrow-2e8f9f383d3ebc78fb2cb8ad37ad855ac28d11dd.tar.gz
crow-2e8f9f383d3ebc78fb2cb8ad37ad855ac28d11dd.zip
begin implementation: mustache based template engine
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 12535ca..e71ff37 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ binaries=covtest example
all: covtest example
-example: example.cpp settings.h crow.h http_server.h http_connection.h parser.h http_response.h routing.h common.h utility.h json.h datetime.h logging.h
+example: example.cpp settings.h crow.h http_server.h http_connection.h parser.h http_response.h routing.h common.h utility.h json.h datetime.h logging.h mustache.h
${CXX} -Wall $(FLAGS_DEBUG) -O3 -std=c++1y -o example example.cpp http-parser/http_parser.c -pthread -lboost_system $(FLAGS_BOOST_THREAD) -ltcmalloc_minimal -I http-parser/
test: covtest
@@ -27,7 +27,7 @@ unittest: unittest.cpp routing.h utility.h crow.h http_server.h http_connection.
${CXX} -Wall $(FLAGS_DEBUG) -std=c++1y -o unittest unittest.cpp http-parser/http_parser.c -pthread -lboost_system $(FLAGS_BOOST_THREAD) -I http-parser/
./unittest
-covtest: unittest.cpp routing.h utility.h crow.h http_server.h http_connection.h parser.h http_response.h common.h json.h datetime.h logging.h
+covtest: unittest.cpp routing.h utility.h crow.h http_server.h http_connection.h parser.h http_response.h common.h json.h datetime.h logging.h mustache.h
${CXX} -Wall $(FLAGS_DEBUG) -std=c++1y -o covtest --coverage unittest.cpp http-parser/http_parser.c -pthread -lboost_system $(FLAGS_BOOST_THREAD) -I http-parser/
./covtest
gcov $(FLAGS_GCOV) unittest.cpp