HardenedBSD/gnu/usr.bin/cc/f77/Makefile
Bruce Evans b323234ba7 Don't forget to clean f77.1.
Don't use "+=" for variables that are only set once.
2000-05-15 14:21:38 +00:00

22 lines
367 B
Makefile

# $FreeBSD$
.include "../Makefile.inc"
.PATH: ${GCCDIR}/f ${GCCDIR}
PROG= f77
SRCS= gcc.c g77spec.c version.c
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>