From 10462f2b7f668502da950a2f5925d681d46bb48b Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Fri, 18 Jul 2014 11:52:35 +0900 Subject: [PATCH] remove custom target `no-act' --- CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c9311e1b..b2929567 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,10 +40,7 @@ include(tools/CMakeLists.txt) add_custom_target(run bin/picrin DEPENDS repl) # $ make test -add_custom_target(test DEPENDS no-act test-r7rs) - -# $ make no-act -add_custom_target(no-act bin/picrin -e '' > /dev/null DEPENDS repl) +add_custom_target(test DEPENDS test-r7rs) # $ make test-r7rs add_custom_target(test-r7rs bin/picrin ${PROJECT_SOURCE_DIR}/t/r7rs-tests.scm DEPENDS repl)