17 lines
231 B
Makefile
17 lines
231 B
Makefile
|
# '# comment' comment=1
|
||
|
# comment
|
||
|
|
||
|
# '.SUFFIXES' target=5, ':' operator=4
|
||
|
.SUFFIXES:
|
||
|
|
||
|
# 'LD' identifier=3, '=' operator=4, 'link' default=0
|
||
|
LD=link
|
||
|
|
||
|
# '!IFDEF DEBUG' preprocessor=2
|
||
|
!IFDEF DEBUG
|
||
|
|
||
|
# '$(' ID EOL=9
|
||
|
X=$(
|
||
|
|
||
|
# End of file
|