mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 14:21:18 +01:00
5abb10faa1
YP is less and less used, split them to users have the choice to not install them. MFC after: 2 weeks Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D33441
16 lines
231 B
Makefile
16 lines
231 B
Makefile
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
|
# $FreeBSD$
|
|
|
|
YPSERV=${SRCTOP}/usr.sbin/ypserv/common
|
|
.PATH: ${YPSERV}
|
|
|
|
PACKAGE= yp
|
|
PROG= ypwhich
|
|
SRCS= yplib_host.c ypwhich.c
|
|
|
|
CFLAGS+= -I${YPSERV} -I.
|
|
|
|
WARNS?= 2
|
|
|
|
.include <bsd.prog.mk>
|