libs/wpp: Specify the bison name prefix directly in the source file.

This commit is contained in:
Alexandre Julliard 2006-09-09 11:25:10 +02:00
parent 2f8c51f547
commit 65516804ee
2 changed files with 3 additions and 1 deletions

View File

@ -21,7 +21,7 @@ $(MODULE): $(OBJS)
$(RANLIB) $@
ppy.tab.c ppy.tab.h: ppy.y
$(BISON) -ppp -d -t $(SRCDIR)/ppy.y -o ppy.tab.c
$(BISON) -d $(SRCDIR)/ppy.y -o ppy.tab.c
# hack to allow parallel make
ppy.tab.h: ppy.tab.c

View File

@ -123,6 +123,8 @@ static int nmacro_args;
%}
%name-prefix="pp"
%union{
int sint;
unsigned int uint;