58458d066f
Update the BSD LICENSE and remove the 3rd clause. Reviewed by: rodrigc, kib, bapt Approved by: bapt (mentor) Obtained from: OpenBSD Differential Revision: D3249
15 lines
226 B
Makefile
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>
|