freebsd-dev/usr.bin/nc/Makefile
Xin LI fd449ffe29 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
2005-02-07 05:45:38 +00:00

13 lines
168 B
Makefile

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