mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-30 15:38:06 +01:00
b323234ba7
Don't use "+=" for variables that are only set once.
22 lines
367 B
Makefile
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>
|