Add cross-compilation script

This commit is contained in:
Zachary Yedidia
2016-03-22 18:17:11 -04:00
parent a5b0befba1
commit d20df210d0
84 changed files with 53 additions and 5 deletions

16
runtime/syntax/pov.micro Normal file
View File

@@ -0,0 +1,16 @@
## Here is an example for POV-Ray.
##
syntax "POV" "\.(pov|POV|povray|POVRAY)$"
color brightcyan "^[[:space:]]*#[[:space:]]*(declare)"
color brightyellow "\b(sphere|cylinder|translate|matrix|rotate|scale)\b"
color brightyellow "\b(orthographic|location|up|right|direction|clipped_by)\b"
color brightyellow "\b(fog_type|fog_offset|fog_alt|rgb|distance|transform)\b"
color brightred "^\b(texture)\b"
color brightred "\b(light_source|background)\b"
color brightred "\b(fog|object|camera)\b"
color green "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)"
color brightmagenta "\b(union|group|subgroup)\b"
## Comment highlighting
color brightblue "//.*"
color brightblue (s) "/\*.*?\*/"