prism-makefile.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. Prism.languages.makefile = {
  2. 'comment': {
  3. pattern: /(^|[^\\])#(?:\\(?:\r\n|[\s\S])|[^\\\r\n])*/,
  4. lookbehind: true
  5. },
  6. 'string': {
  7. pattern: /(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
  8. greedy: true
  9. },
  10. // Built-in target names
  11. 'builtin': /\.[A-Z][^:#=\s]+(?=\s*:(?!=))/,
  12. // Targets
  13. 'symbol': {
  14. pattern: /^[^:=\r\n]+(?=\s*:(?!=))/m,
  15. inside: {
  16. 'variable': /\$+(?:[^(){}:#=\s]+|(?=[({]))/
  17. }
  18. },
  19. 'variable': /\$+(?:[^(){}:#=\s]+|\([@*%<^+?][DF]\)|(?=[({]))/,
  20. 'keyword': [
  21. // Directives
  22. /-include\b|\b(?:define|else|endef|endif|export|ifn?def|ifn?eq|include|override|private|sinclude|undefine|unexport|vpath)\b/,
  23. // Functions
  24. {
  25. pattern: /(\()(?:addsuffix|abspath|and|basename|call|dir|error|eval|file|filter(?:-out)?|findstring|firstword|flavor|foreach|guile|if|info|join|lastword|load|notdir|or|origin|patsubst|realpath|shell|sort|strip|subst|suffix|value|warning|wildcard|word(?:s|list)?)(?=[ \t])/,
  26. lookbehind: true
  27. }
  28. ],
  29. 'operator': /(?:::|[?:+!])?=|[|@]/,
  30. 'punctuation': /[:;(){}]/
  31. };