makefile.js 531 B

123456789
  1. define("ace/snippets/makefile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet ifeq\n ifeq (${1:cond0},${2:cond1})\n ${3:code}\n endif\n",t.scope="makefile"});
  2. (function() {
  3. window.require(["ace/snippets/makefile"], function(m) {
  4. if (typeof module == "object" && typeof exports == "object" && module) {
  5. module.exports = m;
  6. }
  7. });
  8. })();