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:
delphij 2005-02-07 05:45:38 +00:00
parent 48c3866bae
commit 2cab7fda88

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>