浏览代码

Makefile: Enable debugging of parser.

This compiles the debugging code for teh parser. It's not active
unless the yydebug variable is set to a non-zero value.
tags/mesa-7.9-rc1
Carl Worth 15 年前
父节点
当前提交
725c17a926
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Makefile

+ 1
- 1
Makefile 查看文件

@@ -3,7 +3,7 @@ override CFLAGS += -Wall -Wextra -Wwrite-strings -Wswitch-enum -Wno-unused
glcpp: glcpp.o glcpp-lex.o glcpp-parse.o hash_table.o

%.c %.h: %.y
bison --defines=$*.h --output=$*.c $^
bison --debug --defines=$*.h --output=$*.c $^

%.c: %.l
flex --outfile=$@ $<

正在加载...
取消
保存