The next generation Make..
####What is Bake?
Bake helps you build your project in just on command:
bake
####Bake usage:
Bake uses something called a Bakefile to build your project.
Bakefile's are simple JSON files.
Heres an example:
//Bakefile
{
"bake": {
"task": "task_name",
"run": [
"./configure",
"make install"
]
}
}Then just run: bake.
####Installation: Just run these in the command line:
cd /usr/local
git clone https://github.com/blubrackets/bake
echo 'export PATH=$PATH:/usr/local/bake/bakebin' >> ~/.bash_profileThen restart your command line.