summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>1999-07-28 07:19:38 +0000
committerobrien <obrien@FreeBSD.org>1999-07-28 07:19:38 +0000
commita4b8ba086cc7deb61a46dedc3ed9fa67164c67e9 (patch)
tree185934ae38eb598079efe404f08808c2a7f36cb1 /gnu
parent0beb705ee7ef62333bd9546b0bf01de43d1c895b (diff)
downloadFreeBSD-src-a4b8ba086cc7deb61a46dedc3ed9fa67164c67e9.zip
FreeBSD-src-a4b8ba086cc7deb61a46dedc3ed9fa67164c67e9.tar.gz
The Unix way is arguments come before an input file name, not after.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/cc/cc1plus/Makefile4
-rw-r--r--gnu/usr.bin/cc/cc_tools/Makefile6
2 files changed, 5 insertions, 5 deletions
diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile
index f9b4051..603113d 100644
--- a/gnu/usr.bin/cc/cc1plus/Makefile
+++ b/gnu/usr.bin/cc/cc1plus/Makefile
@@ -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
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile
index 721e19b..1d4d3da 100644
--- a/gnu/usr.bin/cc/cc_tools/Makefile
+++ b/gnu/usr.bin/cc/cc_tools/Makefile
@@ -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
OpenPOWER on IntegriCloud