Revamp several Makefile nits:

- .PATH: is spelled ``.PATH: ''
	- Don't forget to use DPADD so ``make checkdpadd'' is
	  not broken.
	- LDADD should not come with + as it's empty in the
	  first place

Suggested by:	ru
This commit is contained in:
Xin LI 2005-02-07 05:45:38 +00:00
parent b0683dae2d
commit fd449ffe29
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141432

View File

@ -1,11 +1,12 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../contrib/netcat
.PATH: ${.CURDIR}/../../contrib/netcat
PROG= nc
SRCS= netcat.c atomicio.c socks.c
CFLAGS+=-DIPSEC
LDADD+= -lipsec
LDADD= -lipsec
DPADD= -lipsec
.include <bsd.prog.mk>