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
252 B
Makefile
16 lines
252 B
Makefile
#
|
|
# $Id: Makefile,v 1.4 1994/11/15 04:52:05 phk Exp $
|
|
#
|
|
|
|
PROG = cpp
|
|
SRCS = cccp.c cexp.c
|
|
BINDIR= /usr/libexec
|
|
SRCS+= obstack.c version.c
|
|
|
|
cexp.c cexp.h: cexp.y
|
|
${BISON} -d ${GCCDIR}/cexp.y -o cexp.c
|
|
|
|
CLEANFILES+= cexp.c cexp.h
|
|
|
|
.include <bsd.prog.mk>
|