Now that we are requiring bison anyway, make the .tab.c file use the
same base name as the .y file, so that we can generate correct
dependencies in all cases.

diff --git a/tools/makedep.c b/tools/makedep.c
index 0aec443..1b8cebc 100644
--- a/tools/makedep.c
+++ b/tools/makedep.c
@@ -452,7 +452,7 @@
         *ext++ = 0;
         if (!strcmp( ext, "y" ))  /* yacc file */
         {
-            *column += fprintf( file, "y.tab.o: y.tab.c" );
+            *column += fprintf( file, "%s.tab.o: %s.tab.c", obj, obj );
         }
         else if (!strcmp( ext, "l" ))  /* lex file */
         {