723ff3e087
vidcontrol out of machine-independance into the I386 & clean dependant sections. Also move 'timed' out of machine-dependace into machine-independance Reviewed by: rgrimes
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# @(#)Makefile 5.20 (Berkeley) 6/12/93
|
|
|
|
# XXX MISSING: mkproto
|
|
# XXX MISSING SOURCES: quot
|
|
# XXX TEMP. BROKEN: iostat
|
|
SUBDIR= ac accton amd arp chown chroot cron crunch dbsym dev_mkdb \
|
|
diskpart edquota inetd kbdcontrol kgmon kvm_mkdb lpr manctl \
|
|
mtree mrouted named nslookup pkg_install portmap pstat pwd_mkdb \
|
|
quotaon repquota routed rmt rwhod sa sendmail sliplogin sysctl \
|
|
syslogd tcpdump timed traceroute trpt tzsetupvipw xntpd 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 config config.new eeprom fdformat fdwrite \
|
|
iostat kbdcontrol lptcontrol rtprio swapinfo vidcontrol
|
|
.elif ${MACHINE} == "hp300"
|
|
SUBDIR+=config iostat
|
|
.elif ${MACHINE} == "i386"
|
|
SUBDIR+=apm apmconf bad144 config fdformat fdwrite kbdcontrol lptcontrol \
|
|
rtprio swapinfo vidcontrol
|
|
# iostat
|
|
.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>
|