From fdae72d72082fb4775980ebf57c5e8b86f1ec3c1 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Thu, 4 Apr 2002 00:14:58 +0000 Subject: [PATCH] Remove duplicate objc-parse.h. While we are at it, just spell it correctly as c-parse.h since that is how the consumers spell it. --- gnu/usr.bin/cc/cc1obj/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/usr.bin/cc/cc1obj/Makefile b/gnu/usr.bin/cc/cc1obj/Makefile index c0fd806dbbd..876d089822a 100644 --- a/gnu/usr.bin/cc/cc1obj/Makefile +++ b/gnu/usr.bin/cc/cc1obj/Makefile @@ -5,7 +5,7 @@ .PATH: ../cc_tools ${GCCDIR}/objc ${GCCDIR} PROG= cc1obj -SRCS= objc-parse.c objc-parse.h objc-parse.h objc-act.c +SRCS= objc-parse.c c-parse.h objc-act.c # Ugh, compiled twice... SRCS+= c-decl.c c-lex.c BINDIR= /usr/libexec @@ -19,16 +19,16 @@ LDADD+= ${LIBCC_INT} #----------------------------------------------------------------------- # objc parser -.ORDER: objc-parse.c objc-parse.h -objc-parse.c objc-parse.h: c-parse.in +.ORDER: objc-parse.c c-parse.h +objc-parse.c c-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 ${YACC} -d -o objc-parse.c objc-parse.y - ln -sf objc-parse.h c-parse.h + mv objc-parse.h c-parse.h mv objc-parse.y objc-parse.y.out -CLEANFILES+= objc-parse.c objc-parse.h c-parse.h \ +CLEANFILES+= objc-parse.c c-parse.h \ objc-parse.y objc-parse.y.out # insurance #-----------------------------------------------------------------------