fd449ffe29
- .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
13 lines
168 B
Makefile
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>
|