makedep: Support for new naming scheme for lex files.

This commit is contained in:
Alexandre Julliard 2006-09-09 13:16:59 +02:00
parent 9c085cba0a
commit 560c9ee785
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
DEFS = -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\""
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ..
SRCDIR = @srcdir@

View File

@ -553,7 +553,7 @@ static void output_src( FILE *file, INCL_FILE *pFile, int *column )
}
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 */
{