*** empty log message ***

This commit is contained in:
David Rose 2000-10-20 00:26:26 +00:00
parent 311aae0a0e
commit 7c9e28e173

View File

@ -524,7 +524,7 @@ $[target] : $[sources]
#define target $[patsubst %.yxx,%.cxx,$[file]]
#define source $[file]
$[target] : $[source]
$[BISON] -y $[if $[YACC_PREFIX],-d --name-prefix=$[YACC_PREFIX]] $[source]
$[BISON] -y $[YFLAGS] $[if $[YACC_PREFIX],-d --name-prefix=$[YACC_PREFIX]] $[source]
mv y.tab.c $[target]
mv y.tab.h $[patsubst %.yxx,%.h,$[source]]
@ -535,7 +535,7 @@ $[target] : $[source]
#define target $[patsubst %.lxx,%.cxx,$[file]]
#define source $[file]
$[target] : $[source]
$[FLEX] $[if $[YACC_PREFIX],-P$[YACC_PREFIX]] -olex.yy.c $[source]
$[FLEX] $[LFLAGS] $[if $[YACC_PREFIX],-P$[YACC_PREFIX]] -olex.yy.c $[source]
$[SED] '/#include <unistd.h>/d' lex.yy.c > $[target]
rm lex.yy.c