aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-04-27 02:19:59 +0900
committeripknHama <ipknhama@gmail.com>2014-04-27 03:16:00 +0900
commitf8893eb138eae88f35ba752221a02b318d275364 (patch)
tree9ffcd76c289bc8a9f7b21a4dd16c1ba434ed891e /Makefile
parent8eceb3f7ccc3dc57263c7ed2529493d831d59f61 (diff)
downloadcrow-f8893eb138eae88f35ba752221a02b318d275364.tar.gz
crow-f8893eb138eae88f35ba752221a02b318d275364.zip
rename flask to crow
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a5552e6..bd50a3a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
all: covtest example
-example: example.cpp flask.h http_server.h http_connection.h parser.h http_response.h routing.h common.h utility.h json.h
+example: example.cpp crow.h http_server.h http_connection.h parser.h http_response.h routing.h common.h utility.h json.h
g++ -Wall -g -O3 -std=c++11 -o example example.cpp http-parser/http_parser.c -pthread -lboost_system -lboost_thread -I http-parser/
test: covtest
@@ -14,7 +14,7 @@ unittest: unittest.cpp routing.h
g++ -Wall -g -std=c++11 -o unittest unittest.cpp http-parser/http_parser.c -pthread -lboost_system -lboost_thread -I http-parser/
./unittest
-covtest: unittest.cpp routing.h utility.h flask.h http_server.h http_connection.h parser.h http_response.h common.h json.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
g++ -Wall -g -std=c++11 -o covtest --coverage unittest.cpp http-parser/http_parser.c -pthread -lboost_system -lboost_thread -I http-parser/
./covtest
gcov -r unittest.cpp