mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -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)
11 lines
156 B
Makefile
11 lines
156 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ipcrm
|
|
SRCS= ipcrm.c ipc.c
|
|
LIBADD= kvm
|
|
CFLAGS+=-I${SRCTOP}/usr.bin/ipcs
|
|
.PATH: ${SRCTOP}/usr.bin/ipcs
|
|
|
|
WARNS?= 0
|
|
|
|
.include <bsd.prog.mk>
|