add 'make test' target

This commit is contained in:
Yuichi Nishiwaki 2014-06-22 20:32:34 +09:00
parent 82f8679efd
commit b9e1e7d31b
1 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,9 @@ include(tools/CMakeLists.txt)
# $ make run
add_custom_target(run bin/picrin DEPENDS repl)
# $ make test
add_custom_target(test DEPENDS no-act)
# $ make no-act
add_custom_target(no-act bin/picrin -e '' > /dev/null DEPENDS repl)