Initial commit
[yaffs-website] / node_modules / node-gyp / lib / rebuild.js
1
2 module.exports = exports = rebuild
3
4 exports.usage = 'Runs "clean", "configure" and "build" all at once'
5
6 function rebuild (gyp, argv, callback) {
7
8   gyp.todo.push(
9       { name: 'clean', args: [] }
10     , { name: 'configure', args: argv }
11     , { name: 'build', args: [] }
12   )
13   process.nextTick(callback)
14 }