1'use strict'
2
3async function rebuild (gyp, argv) {
4  gyp.todo.push(
5    { name: 'clean', args: [] }
6    , { name: 'configure', args: argv }
7    , { name: 'build', args: [] }
8  )
9}
10
11module.exports = rebuild
12module.exports.usage = 'Runs "clean", "configure" and "build" all at once'
13