mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-25 16:13:17 +00:00
97fe7f477f
target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
19 lines
310 B
Makefile
19 lines
310 B
Makefile
#
|
|
# $Id: Makefile,v 1.9 1997/02/22 15:44:59 peter Exp $
|
|
#
|
|
|
|
PROG = cpp
|
|
SRCS = cccp.c cexp.c
|
|
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>
|