aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/nc
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/nc')
-rw-r--r--usr.bin/nc/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/usr.bin/nc/Makefile b/usr.bin/nc/Makefile
new file mode 100644
index 000000000000..a4400bcddc90
--- /dev/null
+++ b/usr.bin/nc/Makefile
@@ -0,0 +1,12 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../contrib/netcat
+
+PROG= nc
+SRCS= netcat.c atomicio.c socks.c
+
+CFLAGS+=-DIPSEC
+LDADD= -lipsec
+DPADD= ${LIBIPSEC}
+
+.include <bsd.prog.mk>