diff options
author | imp <imp@FreeBSD.org> | 1998-06-09 05:36:48 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1998-06-09 05:36:48 +0000 |
commit | b6bacf38ca3b5fdee1e90aa9e096e515bca10210 (patch) | |
tree | a8df0256ff9c9310e0c6c45d0e86fe2b2c0c3724 /usr.sbin/ppp/Makefile | |
parent | 5a2b97449da31bc98b451ede0f56fbeecddff92a (diff) | |
download | FreeBSD-src-b6bacf38ca3b5fdee1e90aa9e096e515bca10210.zip FreeBSD-src-b6bacf38ca3b5fdee1e90aa9e096e515bca10210.tar.gz |
$@ is deprecated, use longer forms of single char macros
Diffstat (limited to 'usr.sbin/ppp/Makefile')
-rw-r--r-- | usr.sbin/ppp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ppp/Makefile b/usr.sbin/ppp/Makefile index 38457e9..e4710dd 100644 --- a/usr.sbin/ppp/Makefile +++ b/usr.sbin/ppp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.39 1998/06/07 00:16:57 brian Exp $ +# $Id: Makefile,v 1.40 1998/06/07 17:08:42 brian Exp $ PROG= ppp SRCS= arp.c async.c auth.c bundle.c ccp.c chap.c chat.c command.c \ @@ -44,8 +44,8 @@ DPADD+= ${LIBDES} # and we don't want any unused symbols to spoil the final link. SRCS+= alias_cmd.c loadalias.c chap_ms.c chap_ms.o alias_cmd.o loadalias.o: - >null_$*.c - cc -c -o $@ null_$*.c + >null_${.PREFIX}.c + cc -c -o ${.TARGET} null_${.PREFIX}.c .endif .include <bsd.prog.mk> |