18 lines
288 B
Makefile
18 lines
288 B
Makefile
#
|
|
# $Id: Makefile,v 1.6 1996/09/23 04:14:30 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
|
|
|
|
cexp.c cexp.h: cexp.y
|
|
${BISON} -d ${GCCDIR}/cexp.y -o cexp.c
|
|
|
|
CLEANFILES+= cexp.c cexp.h
|
|
|
|
.include <bsd.prog.mk>
|