From ff3145decb4b5bd0802f07ab2ce6bae88bc76ebb Mon Sep 17 00:00:00 2001 From: Tim Burks Date: Fri, 25 Sep 2009 12:00:40 -0500 Subject: [PATCH] removed install and test tasks (they now come free from nuke) --- Nukefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Nukefile b/Nukefile index d954319..d4137aa 100644 --- a/Nukefile +++ b/Nukefile @@ -42,10 +42,6 @@ (compilation-tasks) (framework-tasks) - -(task "test" => "framework" is - (SH "nutest test/test_*.nu")) - (task "default" => "framework") (task "clobber" => "clean" is @@ -53,9 +49,5 @@ (SH "rm -rf #{@framework_dir}") (SH "rm -f example1")) -(task "install" => "framework" is - (SH "sudo rm -rf /Library/Frameworks/#{@framework}.framework") - (SH "sudo cp -rp #{@framework}.framework /Library/Frameworks/#{@framework}.framework")) - (task "example" is (SH "#{@cc} examples/example1.m -o example1 -lxml2 -I/usr/include/libxml2 -framework Cocoa -framework KissXML"))