freebsd-skq/usr.sbin/Makefile
Geoff Rehmet 12365022c0 Make it possible to run lptcontrol on a printer port which does not
actually have a printer connected or online:
- MAKEDEV:		remove all signs of lpa
			add lpctl? devices (minor # = unit + 128)
- usr.sbin/Makefile	add lptcontrol
- sys/i386/isa/lpt.c	implement the LP_BYPASS flag: when a unit is
			opened with this flag set, the printer is
			not primed, and no check is made to see that
			the printer is online.  This can only be used
			to pass ioctls.  (giving us /dev/lpctl?)
- lptcontrol.c		use /dev/lpctl? (LP_BYPASS)
			-f flag removed, -u flag added
- lptcontrol.8		document changes in lptcontrol
			rewrite using mandoc macros
Submitted by:	Geoff.
1994-09-03 22:47:08 +00:00

40 lines
1.2 KiB
Makefile

# @(#)Makefile 5.20 (Berkeley) 6/12/93
# XXX MISSING: cron mkproto sa
# XXX MISSING SOURCES: ac quot
# XXX TEMP. BROKEN: iostat xntpd
SUBDIR= accton amd arp chown chroot cron dbsym dev_mkdb diskpart \
edquota inetd kbdcontrol kgmon kvm_mkdb lpr lptcontrol \
mtree portmap pstat \
pwd_mkdb quotaon repquota routed rmt rtprio rwhod sendmail \
sliplogin sysctl syslogd tcpdump traceroute trpt vidcontrol \
vipw ypbind yppoll ypset
#
# XNSrouted and trsp are of very marginal utility to anyone at this
# point. Users who actually have a use for these programs (unlikely)
# are free to add them back in.
#
# SUBDIR+=XNSrouted trsp
.if make(clean) || make(cleandir)
SUBDIR+=bad144 config config.new eeprom iostat swapinfo timed
.elif ${MACHINE} == "hp300"
SUBDIR+=config iostat timed
.elif ${MACHINE} == "i386"
SUBDIR+=bad144 config swapinfo timed
# iostat
.elif ${MACHINE} == "luna68k"
SUBDIR+=config iostat timed
.elif ${MACHINE} == "mips"
SUBDIR+=config iostat timed
.elif ${MACHINE} == "sparc"
SUBDIR+=config.new eeprom timed
.elif ${MACHINE} == "tahoe"
SUBDIR+=config iostat timed
.elif ${MACHINE} == "vax"
SUBDIR+=bad144 config iostat timed
.endif
.include <bsd.subdir.mk>