4a1a0dbedb
- Get rid of a lot of the static variables which were shared by many routines and programs in the suite. - Create an abstract interface to the printcap database, so that other retrieval and iteration mechanisms could be developed (e.g., YP, Hesiod, or automatic retrieval from a trusted server). - Give each capability a human-readable name in addition to the historic two-character one. - Otherwise generally clean up a lot of dark corners. Many still remain. - When submitting jobs, use the official login name record (from getlogin()) if there is one, rather than reverse-mapping the uid. More to come...
11 lines
181 B
Makefile
11 lines
181 B
Makefile
# $Id$
|
|
|
|
BINDIR = /usr/bin
|
|
MAN1 = lp.1
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/lp.sh ${DESTDIR}${BINDIR}/lp
|
|
|
|
.include <bsd.prog.mk>
|