Skip to content

Instantly share code, notes, and snippets.

@yfrancis
Created March 15, 2013 19:05
Show Gist options
  • Save yfrancis/5172250 to your computer and use it in GitHub Desktop.
Save yfrancis/5172250 to your computer and use it in GitHub Desktop.
{
"cmd": ["make"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${project_path:${folder:${file_path}}}",
"selector": "source.makefile",
"target": "multi_task_exec",
"variants":
[
{
"name": "Clean",
"cmd": ["make", "clean"]
},
{
"name": "Package",
"cmd": ["make", "package"]
},
{
"name": "Install",
"cmd": ["make", "install"]
},
{
"name": "Run",
"cmd": ["make", "package", "install"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment