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.
16 lines
230 B
Makefile
16 lines
230 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
PROG = cc1
|
|
SRCS = c-parse.c \
|
|
c-aux-info.c c-convert.c c-decl.c c-iterate.c c-lang.c c-lex.c \
|
|
c-typeck.c
|
|
BINDIR= /usr/libexec
|
|
NOMAN= 1
|
|
NOSHARED= true
|
|
DPADD+= ${LIBCC_INT}
|
|
LDADD+= -lcc_int
|
|
|
|
.include <bsd.prog.mk>
|