freebsd-dev/usr.sbin/lpr/lprm/Makefile
Garrett Wollman 3a0a936baa Add -Wno-unused so that ``make world'' can complete successfully.
GCC suppresses the warning for ``standard'' header files, but since the
headers do not come from the ``standard'' place in a ``make world'', GCC
doesn't get it.
1997-12-17 19:38:33 +00:00

17 lines
389 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
# $Id: Makefile,v 1.4 1997/12/16 17:53:35 bde Exp $
PROG= lprm
CFLAGS+=-I${.CURDIR}/../common_source ${CWARNFLAGS}
SRCS= lprm.c
BINOWN= root
BINGRP= daemon
BINMODE=6555
BINDIR= /usr/bin
MAN1= lprm.1
.PATH: ${.CURDIR}/../common_source
DPADD= ${.OBJDIR}/../common_source/liblpr.a
LDADD= -L${.OBJDIR}/../common_source -llpr
.include <bsd.prog.mk>