Files
cappuccino/AppKit/Themes/CommonJS/Jakefile
T
Tom Robinson b2179f14ab Cleanup Jakefiles:
* require common.jake first
* require Objective-J/Cappuccino stuff only when needed (automatically requiring these caused too many problems)
* remove useless shebangs, cleanup whitespace
2010-02-19 16:09:39 -08:00

17 lines
395 B
JavaScript

require("../../../common.jake");
var FILE = require("file");
$BLENDTASK = "blendtask.j";
$BUILD_CJS_BLENDTASK = FILE.join($BUILD_CJS_CAPPUCCINO, "lib", "cappuccino", "jake", "blendtask.j");
filedir($BUILD_CJS_BLENDTASK, [$BLENDTASK], function()
{
cp_r($BLENDTASK, $BUILD_CJS_BLENDTASK);
});
task("build", [$BUILD_CJS_BLENDTASK]);
CLOBBER.include($BUILD_CJS_BLENDTASK);