blob: d67ba920ed71757db8fe9bf53aaffdfd709343b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.3 2003/09/04 04:19:08 mrg Exp $
.include <bsd.own.mk>
PROG= cpp
SRCS= cppspec.c
CPPFLAGS+= -I${BACKENDOBJ}
LINKS= ${BINDIR}/cpp ${BINDIR}/gcpp
TEXINFO= cpp.texi
INFOFLAGS= -I${DIST}/gcc/doc -I${DIST}/gcc/doc/include
MAN= cpp.1
MLINKS+= cpp.1 gcpp.1 cpp.1 cccp.1
.include "../Makefile.frontend"
.include <bsd.info.mk>
.PATH: ${DIST}/gcc ${DIST}/gcc/doc
|