mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 06:45:34 -05:00
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo
over ${.CURDIR}/../foo for paths in Makefiles.
Differential Revision: https://reviews.freebsd.org/D9932
Sponsored by: Netflix
Silence on: arch@ (twice)
13 lines
155 B
Makefile
13 lines
155 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/contrib/netcat
|
|
|
|
PROG= nc
|
|
SRCS= netcat.c atomicio.c socks.c
|
|
|
|
CFLAGS+=-DIPSEC
|
|
LIBADD= ipsec
|
|
|
|
WARNS?= 2
|
|
|
|
.include <bsd.prog.mk>
|