Rather than deleting the grammer files during building, move them out of the

way.  This way they are available for inspection when debugging problems.
This commit is contained in:
David E. O'Brien 1999-08-14 22:40:01 +00:00
parent 95fecd2fa7
commit 440976accd
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.33 1999/07/28 07:19:38 obrien Exp $
# $Id: Makefile,v 1.34 1999/07/28 07:22:06 obrien Exp $
#
#
@ -103,10 +103,10 @@ c-parse.c c-parse.h: c-parse.in
-e "/^ifc$$/d" -e "/^end ifc$$/d" \
${GCCDIR}/c-parse.in > c-parse.y
${YACC} -d -o c-parse.c c-parse.y
rm -f c-parse.y
mv c-parse.y c-parse.y.out
GENSRCS+= c-parse.c c-parse.h
CLEANFILES+= c-parse.y # insurance
CLEANFILES+= c-parse.y c-parse.y.out # insurance
#-----------------------------------------------------------------------
# objc parser
@ -116,10 +116,10 @@ objc-parse.c objc-parse.h: c-parse.in
-e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
${GCCDIR}/c-parse.in > objc-parse.y
${YACC} -d -o objc-parse.c objc-parse.y
rm -f objc-parse.y
mv objc-parse.y objc-parse.y.out
GENSRCS+= objc-parse.c objc-parse.h
CLEANFILES+= objc-parse.y # insurance
CLEANFILES+= objc-parse.y objc-parse.y.out # insurance
#-----------------------------------------------------------------------
# C++ parser done in its own makefile