mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
Update the BSD LICENSE and remove the 3rd clause. Reviewed by: rodrigc, kib, bapt Approved by: bapt (mentor) Obtained from: OpenBSD Differential Revision: D3249
14 lines
226 B
Makefile
14 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>
|