dfe16a29fa
Partially made possible by: Wilko.Bulte@compaq.com
24 lines
443 B
Makefile
24 lines
443 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../Makefile.fe"
|
|
|
|
.PATH: ${GCCDIR}/f ${GCCDIR}
|
|
|
|
PROG= f77
|
|
SRCS= gcc.c g77spec.c version.c
|
|
NOMAN= # not while compile from GCC repo checkout
|
|
|
|
CFLAGS+= -DDEFAULT_TARGET_VERSION=\"$(version)\"
|
|
CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"$(target)\"
|
|
|
|
DPADD= ${LIBCC_INT} ${LIBCC_FBSD}
|
|
LDADD= ${LIBCC_INT} ${LIBCC_FBSD}
|
|
|
|
CLEANFILES= f77.1
|
|
|
|
f77.1: g77.1
|
|
ln -sf ${.ALLSRC} ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|