freebsd-dev/usr.bin/ypwhich/Makefile
Marcelo Araujo 58458d066f Sync ypwhich(1) code with the OpenBSD version that is more modern.
Update the BSD LICENSE and remove the 3rd clause.

Reviewed by:	rodrigc, kib, bapt
Approved by:	bapt (mentor)
Obtained from:	OpenBSD
Differential Revision:	D3249
2015-08-25 15:27:32 +00:00

15 lines
226 B
Makefile

# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
# $FreeBSD$
YPSERV=${.CURDIR}/../../usr.sbin/ypserv/common
.PATH: ${YPSERV}
PROG= ypwhich
SRCS= yplib_host.c ypwhich.c
CFLAGS+= -I${YPSERV} -I.
WARNS?= 2
.include <bsd.prog.mk>