Don't forget to clean f77.1.

Don't use "+=" for variables that are only set once.
This commit is contained in:
Bruce Evans 2000-05-15 14:21:38 +00:00
parent 395e4e5ab2
commit b323234ba7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60598

View File

@ -10,8 +10,10 @@ 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}
DPADD= ${LIBCC_INT} ${LIBCC_FBSD}
LDADD= ${LIBCC_INT} ${LIBCC_FBSD}
CLEANFILES= f77.1
f77.1: g77.1
ln -sf ${.ALLSRC} ${.TARGET}