eae0c0a88b
that this is a superset of cdplay, and perhaps it's time to send cdplay into the bit bucket if this works well. According to the docs, it has a friendlier command structure, command line interface etc. Submitted by: Serge Vakulenko <vak@cronyx.ru>
44 lines
1.5 KiB
Makefile
44 lines
1.5 KiB
Makefile
# From: @(#)Makefile 5.20 (Berkeley) 6/12/93
|
|
# $Id: Makefile,v 1.67 1995/08/13 15:28:18 peter Exp $
|
|
|
|
# XXX MISSING: mkproto
|
|
# XXX MISSING SOURCES: quot
|
|
SUBDIR= ac accton adduser amd arp bootparamd cdcontrol chown chroot cron \
|
|
crunch ctm dev_mkdb diskpart edquota inetd kernbb kgmon kvm_mkdb \
|
|
lpr lsdev manctl mrouted mtree named nslookup pcvt pkg_install \
|
|
pkg_manage portmap ppp pppd pppstats pstat pwd_mkdb quotaon rarpd \
|
|
repquota routed rmt rwhod sa sendmail sliplogin slstat sysctl syslogd \
|
|
tcpdump timed traceroute trpt tzsetup vipw vnconfig watch xntpd \
|
|
xten ypbind yppoll ypset zic
|
|
|
|
#
|
|
# 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+=apm apmconf bad144 cdplay config config.new fdformat fdwrite \
|
|
fdcontrol iostat kbdcontrol kbdmap lptcontrol mixer ncrcontrol \
|
|
rtprio sgsc sicontrol spkrtest vidcontrol
|
|
.elif ${MACHINE} == "hp300"
|
|
SUBDIR+=config iostat
|
|
.elif ${MACHINE} == "i386"
|
|
SUBDIR+=apm apmconf bad144 cdplay config fdformat fdwrite fdcontrol iostat \
|
|
kbdcontrol kbdmap lptcontrol mixer ncrcontrol rtprio sgsc sicontrol \
|
|
spkrtest vidcontrol
|
|
.elif ${MACHINE} == "luna68k"
|
|
SUBDIR+=config iostat
|
|
.elif ${MACHINE} == "mips"
|
|
SUBDIR+=config iostat
|
|
.elif ${MACHINE} == "sparc"
|
|
SUBDIR+=config.new eeprom
|
|
.elif ${MACHINE} == "tahoe"
|
|
SUBDIR+=config iostat
|
|
.elif ${MACHINE} == "vax"
|
|
SUBDIR+=bad144 config iostat
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|