Commit 560c9ee7 authored by Alexandre Julliard's avatar Alexandre Julliard

makedep: Support for new naming scheme for lex files.

parent 9c085cba
DEFS = -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\""
TOPSRCDIR = @top_srcdir@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR = .. TOPOBJDIR = ..
SRCDIR = @srcdir@ SRCDIR = @srcdir@
......
...@@ -553,7 +553,7 @@ static void output_src( FILE *file, INCL_FILE *pFile, int *column ) ...@@ -553,7 +553,7 @@ static void output_src( FILE *file, INCL_FILE *pFile, int *column )
} }
else if (!strcmp( ext, "l" )) /* lex file */ else if (!strcmp( ext, "l" )) /* lex file */
{ {
*column += fprintf( file, "%s.o: %s.c", LEX_OUTPUT_ROOT, LEX_OUTPUT_ROOT ); *column += fprintf( file, "%s.yy.o: %s.yy.c", obj, obj );
} }
else if (!strcmp( ext, "rc" )) /* resource file */ else if (!strcmp( ext, "rc" )) /* resource file */
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment