summaryrefslogtreecommitdiff
path: root/tests/lexers/make/example2.txt
blob: 9db09d0004113228e628b11922ff858949d4bdf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---input---
if DEBUG
DBG = debug
else
DBG =
endif
noinst_PROGRAMS = $(DBG)


---tokens---
'if DEBUG\n'  Comment.Preproc

'DBG'         Name.Variable
' '           Text
'='           Operator
' '           Text
'debug'       Text
'\n'          Text

'else\n'      Comment.Preproc

'DBG'         Name.Variable
' '           Text
'='           Operator
'\n'          Text

'endif\n'     Comment.Preproc

'noinst_PROGRAMS' Name.Variable
' '           Text
'='           Operator
' '           Text
'$('          Keyword
'DBG'         Text
')'           Keyword
'\n'          Text