cda2a9b2f0
This is not "useless", as one may have non-default setting for BINOWN in make.conf, and we still want these to be installed setuid root in this case.
17 lines
239 B
Makefile
17 lines
239 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
BINDIR= /usr/bin
|
|
|
|
PROG= lpq
|
|
BINOWN= root
|
|
BINGRP= daemon
|
|
BINMODE= 6555
|
|
|
|
CFLAGS+= -I${.CURDIR}/../common_source ${CWARNFLAGS}
|
|
|
|
DPADD= ${LIBLPR}
|
|
LDADD= ${LIBLPR}
|
|
|
|
.include <bsd.prog.mk>
|