lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

Make.sublime-build (350B)


      1 {
      2 	"shell_cmd": "make",
      3 	"file_regex": "^(..[^:\n]*):([0-9]+):?([0-9]+)?:? (.*)$",
      4 	"working_dir": "${folder:${project_path:${file_path}}}",
      5 	"selector": "source.makefile",
      6 	"syntax": "Packages/Makefile/Make Output.sublime-syntax",
      7 	"keyfiles": ["Makefile", "makefile"],
      8 
      9 	"variants":
     10 	[
     11 		{
     12 			"name": "Clean",
     13 			"shell_cmd": "make clean"
     14 		}
     15 	]
     16 }