diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1998-08-30 20:58:16 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1998-08-30 20:58:16 +0000 |
commit | 4138d6e9948652da1cdae440ad40b9a369f99a6d (patch) | |
tree | b052edaf1f3eae8eb880ccafea903ddc9bcc62b5 | |
parent | 44d03426b1ce7b5fe9c637f9de99ae7adac55b1b (diff) | |
download | FreeBSD-src-4138d6e9948652da1cdae440ad40b9a369f99a6d.zip FreeBSD-src-4138d6e9948652da1cdae440ad40b9a369f99a6d.tar.gz |
Split lines into one subdir per line.
-rw-r--r-- | games/Makefile | 44 | ||||
-rw-r--r-- | usr.sbin/Makefile | 141 |
2 files changed, 161 insertions, 24 deletions
diff --git a/games/Makefile b/games/Makefile index ab3c0ac..74e0551 100644 --- a/games/Makefile +++ b/games/Makefile @@ -1,11 +1,45 @@ # @(#)Makefile 8.2 (Berkeley) 3/31/94 -# $Id: Makefile,v 1.13 1997/09/11 02:52:59 peter Exp $ +# $Id: Makefile,v 1.14 1998/02/11 19:52:53 jdp Exp $ # XXX missing: chess ching monop [copyright] -SUBDIR= adventure arithmetic atc backgammon battlestar bcd bs caesar \ - canfield cribbage dm factor fish fortune grdc hack hangman \ - larn mille morse number phantasia piano pig pom ppt primes quiz \ - rain random robots rogue sail snake trek wargames worm worms \ +SUBDIR= adventure \ + arithmetic \ + atc \ + backgammon \ + battlestar \ + bcd \ + bs \ + caesar \ + canfield \ + cribbage \ + dm \ + factor \ + fish \ + fortune \ + grdc \ + hack \ + hangman \ + larn \ + mille \ + morse \ + number \ + phantasia \ + piano \ + pig \ + pom \ + ppt \ + primes \ + quiz \ + rain \ + random \ + robots \ + rogue \ + sail \ + snake \ + trek \ + wargames \ + worm \ + worms \ wump .include <bsd.subdir.mk> diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 6a8a167..9f9b45b 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -1,32 +1,135 @@ # From: @(#)Makefile 5.20 (Berkeley) 6/12/93 -# $Id: Makefile,v 1.125 1998/08/20 21:51:35 jb Exp $ +# $Id: Makefile,v 1.126 1998/08/30 20:15:09 gpalmer Exp $ # XXX MISSING: mkproto -SUBDIR= ac accton adduser amd arp bootparamd cdcontrol chkgrp chown chroot \ - ckdist config cron ctm dev_mkdb diskpart edquota inetd kernbb \ - keyadmin keyserv kvm_mkdb lpr manctl mrouted mtest mtree \ - named named.reload named.restart natd ndc newsyslog nslookup nsupdate \ - pccard pciconf periodic pkg_install portmap \ - ppp pppctl pppd pppstats procctl pstat pw pwd_mkdb quot quotaon rarpd \ - repquota rmt rpc.lockd rpc.statd rpc.yppasswdd rpc.ypxfrd \ - rpc.ypupdated rwhod sa sliplogin slstat \ - spray sysctl syslogd tcpdump timed traceroute trpt tzsetup vipw \ - vnconfig watch wormcontrol xntpd xten ypbind yp_mkdb \ - yppoll yppush ypset ypserv zic +SUBDIR= ac \ + accton \ + adduser \ + amd \ + arp \ + bootparamd \ + cdcontrol \ + chkgrp \ + chown \ + chroot \ + ckdist \ + config \ + cron \ + ctm \ + dev_mkdb \ + diskpart \ + edquota \ + inetd \ + kernbb \ + keyadmin \ + keyserv \ + kvm_mkdb \ + lpr \ + manctl \ + mrouted \ + mtest \ + mtree \ + named \ + named.reload \ + named.restart \ + natd \ + ndc \ + newsyslog \ + nslookup \ + nsupdate \ + pccard \ + pciconf \ + periodic \ + pkg_install \ + portmap \ + ppp \ + pppctl \ + pppd \ + pppstats \ + procctl \ + pstat \ + pw \ + pwd_mkdb \ + quot \ + quotaon \ + rarpd \ + repquota \ + rmt \ + rpc.lockd \ + rpc.statd \ + rpc.yppasswdd \ + rpc.ypxfrd \ + rpc.ypupdated \ + rwhod \ + sa \ + sliplogin \ + slstat \ + spray \ + sysctl \ + syslogd \ + tcpdump \ + timed \ + traceroute \ + trpt \ + tzsetup \ + vipw \ + vnconfig \ + watch \ + wormcontrol \ + xntpd \ + xten \ + ypbind \ + yp_mkdb \ + yppoll \ + yppush \ + ypset \ + ypserv \ + zic -SUBDIR+=ipfstat ipftest ipmon ipnat ipresend ipsend iptest +SUBDIR+=ipfstat \ + ipftest \ + ipmon \ + ipnat \ + ipresend \ + ipsend \ + iptest .if !defined(NO_SENDMAIL) -SUBDIR+=mailstats makemap praliases sendmail +SUBDIR+=mailstats \ + makemap \ + praliases \ + sendmail .endif .if ${MACHINE_ARCH} == "i386" -SUBDIR+=crunch kgmon pcvt pnpinfo rndcontrol \ - wlconfig IPXrouted +SUBDIR+=crunch \ + kgmon \ + pcvt \ + pnpinfo \ + rndcontrol \ + wlconfig \ + IPXrouted -SUBDIR+=apm apmconf bad144 fdformat fdwrite fdcontrol iostat \ - kbdcontrol kbdmap lptcontrol mixer moused mptable ncrcontrol \ - rtprio sgsc sicontrol spkrtest stallion vidcontrol +SUBDIR+=apm \ + apmconf \ + bad144 \ + fdformat \ + fdwrite \ + fdcontrol \ + iostat \ + kbdcontrol \ + kbdmap \ + lptcontrol \ + mixer \ + moused \ + mptable \ + ncrcontrol \ + rtprio \ + sgsc \ + sicontrol \ + spkrtest \ + stallion \ + vidcontrol .endif .include <bsd.subdir.mk> |