dd8faa9ff2
reflect much valuable feedback from wollman. More details on the new 'lpc topq' are in the log message for revision 1.2 of lpc/movejobs.c. The previous implementation of 'lpc topq' is available as 'lpc xtopq', in case there are any problems noticed in the new implementation. If there are no problems with this version, a later update will remove the 'lpc xtopq' command. Reviewed by: freebsd-print@bostonradio.org MFC after: 6 days
18 lines
323 B
Makefile
18 lines
323 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../common_source
|
|
|
|
PROG= lpc
|
|
MAN= lpc.8
|
|
SRCS= lpc.c cmds.c cmdtab.c movejobs.c
|
|
BINGRP= daemon
|
|
BINMODE= 2555
|
|
|
|
CFLAGS+= -I${.CURDIR}/../common_source
|
|
|
|
DPADD= ${LIBLPR} ${LIBEDIT} ${LIBTERMCAP}
|
|
LDADD= ${LIBLPR} -ledit -ltermcap
|
|
|
|
.include <bsd.prog.mk>
|