*** gnats/ChangeLog Fri Dec 12 21:58:25 1997 --- gnats/ChangeLog Fri Dec 12 22:01:44 1997 *************** *** 1,3 **** --- 1,8 ---- + Sun Nov 30 21:05:29 1997 Karl Fogel + + * Makefile.in (getdate.c): handle bisons that output + FILENAME.tab.[ch] as well as those that output y.tab.[ch]. + Mon Oct 6 17:00:00 1997 Abe Feldman * pr.c: (read_pr) Unformatted text new has a space at the beginning *** gnats/Makefile.in Fri Dec 12 21:52:51 1997 --- gnats/Makefile.in Fri Dec 12 22:01:07 1997 *************** *** 436,443 **** getdate.c: getdate.y @echo expect 10 shift/reduce conflicts $(BISON) -d $(srcdir)/getdate.y ! mv y.tab.c getdate.c ! mv y.tab.h getdate.h config-send-pr: @if [ ! -d ../send-pr ]; then \ --- 436,451 ---- getdate.c: getdate.y @echo expect 10 shift/reduce conflicts $(BISON) -d $(srcdir)/getdate.y ! @if [ -f y.tab.c ]; then \ ! mv y.tab.c getdate.c ; \ ! elif [ -f getdate.tab.c ] ; then \ ! mv getdate.tab.c getdate.c ; \ ! fi ! @if [ -f y.tab.h ]; then \ ! mv y.tab.h getdate.h ; \ ! elif [ -f getdate.tab.h ] ; then \ ! mv getdate.tab.h getdate.h ; \ ! fi config-send-pr: @if [ ! -d ../send-pr ]; then \