Removed prefix flags from yacc and lex (to prepare for automake).

This commit is contained in:
Svend Sorensen
2005-03-21 21:55:00 +00:00
parent 5b34a8361e
commit 89f355e86d
7 changed files with 172 additions and 75 deletions

View File

@@ -10,10 +10,13 @@ TOC_OBJS= toc_parse.o toc_scan.o toc_print.o
# so we need a prefix to aviod conflicts.
# (NOTE: these lines require GNU Make)
toc_scan.c: LFLAGS+= -Ptoc_yy
cue_scan.c: LFLAGS+= -Pcue_yy
toc_parse.c: YFLAGS+= -p toc_yy
cue_parse.c: YFLAGS+= -p cue_yy
# these have been moved to the source files to prepare for automake
# for flex, used %option prefix="cue_yy"
#toc_scan.c: LFLAGS+= -Ptoc_yy
#cue_scan.c: LFLAGS+= -Pcue_yy
# for yacc, used cue_parse_prefix.h with defines
#toc_parse.c: YFLAGS+= -p toc_yy
#cue_parse.c: YFLAGS+= -p cue_yy
all: $(TARGETS)