a1b588fd3f
(the old cc has been tagged with "gcc_2_6_3_final" so we have a reference point in case of unforseen disasters...) This has the objc backend active, and I think I've managed to get the f77 f2c support through in one piece, but I don't know fortran to test it. A 'make world' change and libobjc commit will follow. If you normally do 'make -DNOCLEAN world', do not do so this time, I know it can fail with groff. This version of gcc makes a **LOT** more warnings on our kernel.
27 lines
700 B
Makefile
27 lines
700 B
Makefile
#
|
|
# $Id: Makefile,v 1.7 1995/10/02 16:37:16 wollman Exp $
|
|
#
|
|
|
|
#First, so that we get cp/tree.c and cp/expr.c instead of the C version
|
|
.PATH: ${.CURDIR}/../../../../contrib/gcc/cp
|
|
|
|
PROG = cc1plus
|
|
SRCS = parse.c \
|
|
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 pt.c \
|
|
ptree.c repo.c search.c sig.c spew.c tree.c typeck.c typeck2.c xref.c
|
|
BINDIR= /usr/libexec
|
|
NOMAN= 1
|
|
NOSHARED= makes_it_smaller_faster
|
|
DPADD+= ${LIBCC_INT}
|
|
LDADD+= -lcc_int
|
|
CFLAGS+= -I. # I mean it.
|
|
|
|
parse.c parse.h: parse.y
|
|
${BISON} -d ${GCCDIR}/cp/parse.y -o parse.c
|
|
grep '^#define[ ]*YYEMPTY' parse.c >>parse.h
|
|
|
|
CLEANFILES+= parse.c parse.h
|
|
|
|
.include <bsd.prog.mk>
|