1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

Simplified using new yacc rules. This is cosmetic - the old rules worked

with `make -jN' because they did the right things to generate cexp.h
without clobbering cexp.c, and there were no missing dependencies on
cexp.h because cexp.h isn't actually used.

Fixed style bugs.
This commit is contained in:
Bruce Evans 1998-05-04 16:58:50 +00:00
parent e6abc0de81
commit b03605afba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35693
2 changed files with 10 additions and 24 deletions

View File

@ -1,18 +1,11 @@
#
# $Id: Makefile,v 1.9 1997/02/22 15:44:59 peter Exp $
#
# $Id$
PROG = cpp
SRCS = cccp.c cexp.c
PROG= cpp
SRCS= cccp.c cexp.y obstack.c version.c
YACC= ${BISON}
YFLAGS=
BINDIR= /usr/libexec
SRCS+= obstack.c version.c
MAN1= cccp.1
MLINKS= cccp.1 cpp.1
.ORDER: cexp.c cexp.h
cexp.c cexp.h: cexp.y
${BISON} -d ${GCCDIR}/cexp.y -o cexp.c
CLEANFILES+= cexp.c cexp.h
.include <bsd.prog.mk>

View File

@ -1,18 +1,11 @@
#
# $Id: Makefile,v 1.9 1997/02/22 15:44:59 peter Exp $
#
# $Id$
PROG = cpp
SRCS = cccp.c cexp.c
PROG= cpp
SRCS= cccp.c cexp.y obstack.c version.c
YACC= ${BISON}
YFLAGS=
BINDIR= /usr/libexec
SRCS+= obstack.c version.c
MAN1= cccp.1
MLINKS= cccp.1 cpp.1
.ORDER: cexp.c cexp.h
cexp.c cexp.h: cexp.y
${BISON} -d ${GCCDIR}/cexp.y -o cexp.c
CLEANFILES+= cexp.c cexp.h
.include <bsd.prog.mk>