Deleted Added
full compact
Makefile (11135) Makefile (18390)
1#
1#
2# $Id: Makefile,v 1.6 1995/09/22 14:14:26 phk Exp $
2# $Id: Makefile,v 1.7 1995/10/02 16:37:16 wollman Exp $
3#
4
3#
4
5#First, so that we get cp/tree.c and cp/expr.c instead of the C version
6.PATH: ${.CURDIR}/../../../../contrib/gcc/cp
7
5PROG = cc1plus
8PROG = cc1plus
6SRCS = call.c class.c cvt.c decl.c decl2.c edsel.c errfn.c error.c except.c expr.c gc.c init.c lex.c method.c parse.c pt.c ptree.c search.c sig.c spew.c tree.c typeck.c typeck2.c xref.c
9SRCS = parse.c \
10 call.c class.c cvt.c decl.c decl2.c edsel.c errfn.c \
11 error.c except.c expr.c gc.c init.c lex.c method.c pt.c \
12 ptree.c repo.c search.c sig.c spew.c tree.c typeck.c typeck2.c xref.c
7BINDIR= /usr/libexec
8NOMAN= 1
9NOSHARED= makes_it_smaller_faster
10DPADD+= ${LIBCC_INT}
11LDADD+= -lcc_int
13BINDIR= /usr/libexec
14NOMAN= 1
15NOSHARED= makes_it_smaller_faster
16DPADD+= ${LIBCC_INT}
17LDADD+= -lcc_int
18CFLAGS+= -I. # I mean it.
12
19
20parse.c parse.h: parse.y
21 ${BISON} -d ${GCCDIR}/cp/parse.y -o parse.c
22 grep '^#define[ ]*YYEMPTY' parse.c >>parse.h
23
24CLEANFILES+= parse.c parse.h
25
13.include <bsd.prog.mk>
26.include <bsd.prog.mk>