// Sublime Text 3 : build system for Makefile // (C) Lilian Besson, 2016. // See http://perso.crans.org/besson/sublimetext.html for information on my use of ST3, // and http://docs.sublimetext.info/en/latest/reference/build_systems/configuration.html for the doc on ST3 build system. { // "working_dir": "${project_path:${folder:${file_path}}}", "working_dir": "${file_path}", // "shell_cmd": ["make"], "cmd": [ "/usr/bin/env", "/home/lilian/bin/mymake.sh", // Change this to the path of your mymake.sh "--noansi" ], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "path": "$PATH", "selector": "source.makefile", // "target": "/home/lilian/bin/autotex", "variants": [ { "name": "Make: Clean", "cmd": ["make", "clean"] }, { "name": "Make: Test", "cmd": ["make", "test"] }, { "name": "Make: send_zamok", "cmd": ["make", "send_zamok"] }, { "name": "Make: all", "cmd": ["make", "all"] } ] }