The Unix way is arguments come before an input file name, not after.

This commit is contained in:
David E. O'Brien 1999-07-28 07:19:38 +00:00
parent d00fc946ed
commit 316dc6cb31
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.16 1999/03/05 04:55:03 obrien Exp $
# $Id: Makefile,v 1.14 1999/04/04 16:36:34 obrien Exp $
#
.include "../Makefile.inc"
@ -20,7 +20,7 @@ CFLAGS+= -I${GCCDIR}/cp -I.
.ORDER: parse.c parse.h
parse.c parse.h: parse.y
${BISON} -d ${GCCDIR}/cp/parse.y -o parse.c
${BISON} -d -o parse.c ${GCCDIR}/cp/parse.y
grep '^#define[ ]*YYEMPTY' parse.c >>parse.h
CLEANFILES+= parse.c parse.h

View file

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.31 1999/04/22 20:12:21 obrien Exp $
# $Id: Makefile,v 1.32 1999/04/28 18:48:08 obrien Exp $
#
#
@ -102,7 +102,7 @@ c-parse.c c-parse.h: c-parse.in
sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
-e "/^ifc$$/d" -e "/^end ifc$$/d" \
${GCCDIR}/c-parse.in > c-parse.y
${BISON} -d c-parse.y -o c-parse.c
${BISON} -d -o c-parse.c c-parse.y
rm -f c-parse.y
GENSRCS+= c-parse.c c-parse.h
@ -115,7 +115,7 @@ objc-parse.c objc-parse.h: c-parse.in
sed -e "/^ifc$$/,/^end ifc$$/d" \
-e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
${GCCDIR}/c-parse.in > objc-parse.y
${BISON} -d objc-parse.y -o objc-parse.c
${BISON} -d -o objc-parse.c objc-parse.y
rm -f objc-parse.y
GENSRCS+= objc-parse.c objc-parse.h