Makefile revision facf4a8d7b59fde89a8662b4f4c73a758e6c402c
012a352f4b26cfd874db8d06debc495c2303e8b2Bob Halley#
178f6ad061e54bc5babfca3577f72058fa0797c1Bob Halley# CDDL HEADER START
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# The contents of this file are subject to the terms of the
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence# Common Development and Distribution License (the "License").
178f6ad061e54bc5babfca3577f72058fa0797c1Bob Halley# You may not use this file except in compliance with the License.
178f6ad061e54bc5babfca3577f72058fa0797c1Bob Halley#
178f6ad061e54bc5babfca3577f72058fa0797c1Bob Halley# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence# or http://www.opensolaris.org/os/licensing.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# See the License for the specific language governing permissions
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# and limitations under the License.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# When distributing Covered Code, include this CDDL HEADER in each
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# If applicable, add the following below this CDDL HEADER, with the
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
b897c52f865b2fc4e220e2110b874e59c716456bBob Halley# information: Portions Copyright [yyyy] [name of copyright owner]
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrence# CDDL HEADER END
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley#
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence#
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# Use is subject to license terms.
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley#
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# ident "%Z%%M% %I% %E% SMI"
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley
b897c52f865b2fc4e220e2110b874e59c716456bBob Halleyinclude ../Makefile.master
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley#
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# Note that the commands 'agents', 'lp', 'perl', and 'man' are first in
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# the list, violating alphabetical order. This is because they are very
b897c52f865b2fc4e220e2110b874e59c716456bBob Halley# long-running and should be given the most wall-clock time for a
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence# parallel build.
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence#
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence# Commands in the FIRST_SUBDIRS list are built before starting the build
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# of other commands. Currently this includes only 'isaexec' and
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# 'platexec'. This is necessary because $(ROOT)/usr/lib/isaexec or
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence# $(ROOT)/usr/lib/platexec must exist when some other commands are built
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence# because their 'make install' creates a hard link to one of them.
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence#
fcb54ce0a4f7377486df5bec83b3aa4711bf4131Mark Andrews# Commands are listed one per line so that TeamWare can auto-merge most
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence# changes.
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence#
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence
460b427411b72da26b1836b9424e2e70d65d9394David LawrenceFIRST_SUBDIRS= \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence isaexec \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley platexec
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David LawrenceCOMMON_SUBDIRS= \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence agents \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence availdevs \
dabea86dac4c01f852b7aea728f73b4f55a89d44Mark Andrews lp \
dabea86dac4c01f852b7aea728f73b4f55a89d44Mark Andrews perl \
dabea86dac4c01f852b7aea728f73b4f55a89d44Mark Andrews man \
dabea86dac4c01f852b7aea728f73b4f55a89d44Mark Andrews Adm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley abi \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence adbgen \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence acct \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence acctadm \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence arch \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence asa \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence audio \
aee5e9cbacd8f88325840b8a498876f4319b0890Mark Andrews auths \
aee5e9cbacd8f88325840b8a498876f4319b0890Mark Andrews autopush \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence awk \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence awk_xpg4 \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence backup \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence banner \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence bart \
c32b87bc54abacf95fb3b063d72b7d1855c1643bMichael Graff basename \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence bc \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence bdiff \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence bfs \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence bnu \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence boot \
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence busstat \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence cal \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley calendar \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley captoinfo \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cat \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cdrw \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cfgadm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley checkeq \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley checknr \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley chgrp \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley chmod \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley chown \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley chroot \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cksum \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley clear \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley clinfo \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cmd-crypto \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cmd-inet \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cmp \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley col \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley comm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley compress \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley consadm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley coreadm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley cpio \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence cpc \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence cron \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence crypt \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence csh \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence csplit \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence ctrun \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence ctstat \
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews ctwatch \
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews cut \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence datadm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley date \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dc \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dd \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley deroff \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley des \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley devfsadm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley syseventd \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley devctl \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley devinfo \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley devmgmt \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dfs.cmds \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley diff \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley diff3 \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley diffmk \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dircmp \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dirname \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dis \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley diskmgtd \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dispadmin \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dladm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dmesg \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dtrace \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley du \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dumpadm \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley dumpcs \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley echo \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley ed \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley eeprom \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley egrep \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley emul64ioctl \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley enhance \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley env \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley eqn \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley expand \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley expr \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley exstr \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley factor \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley false \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley fdetach \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley fdformat \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley fdisk \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley filesync \
fgrep \
file \
find \
fm \
fmli \
fmt \
fmthard \
fmtmsg \
fold \
format \
fs.d \
fstyp \
fuser \
gcore \
gencat \
geniconvtbl \
genmsg \
getconf \
getdevpolicy \
getent \
getfacl \
getmajor \
getopt \
gettext \
gettxt \
graph \
grep \
grep_xpg4 \
groups \
grpck \
gss \
halt \
head \
hostid \
hostname \
id \
infocmp \
init \
initpkg \
install.d \
intrd \
intrstat \
ipcrm \
ipcs \
ipf \
isainfo \
isalist \
iscsi \
java \
join \
kbd \
keyserv \
killall \
krb5 \
kstat \
last \
lastcomm \
ldap \
ldapcachemgr \
line \
link \
listen \
loadkeys \
locale \
lockstat \
locator \
lofiadm \
logadm \
logger \
login \
logins \
logname \
look \
ls \
lvm \
mach \
machid \
mail \
mailx \
makekey \
mdb \
mesg \
mkdir \
mkfifo \
mkfile \
mkmsgs \
mknod \
mkpwdict \
mktemp \
modload \
more \
msgfmt \
msgid \
mt \
mv \
mvdir \
netadm \
netfiles \
newform \
newgrp \
news \
newtask \
nice \
nispasswd \
nl \
nlsadmin \
nohup \
nsadmin \
nscd \
oamuser \
oawk \
openssl \
pack \
pagesize \
passmgmt \
passwd \
paste \
pathchk \
pbind \
pcidr \
pcmciad \
pfexec \
pgrep \
picl \
plimit \
pools \
power \
ppgsz \
pg \
plockstat \
pr \
prctl \
print \
priocntl \
profiles \
projadd \
projects \
prstat \
prtconf \
prtdiag \
prtvtoc \
ps \
psradm \
psrinfo \
psrset \
ptools \
pwck \
pwconv \
pwd \
raidctl \
ramdiskadm \
rcap \
rcm_daemon \
rctladm \
refer \
regcmp \
renice \
rexd \
rm \
rmdir \
rmformat \
rmt \
roles \
rpcbind \
rpcgen \
rpcinfo \
rpcsvc \
rpld \
runat \
sa \
saf \
savecore \
script \
sdiff \
sendmail \
setfacl \
setmnt \
setpgrp \
setuname \
sgs \
sh \
sleep \
smbios \
smserverd \
soelim \
sort \
spell \
spline \
split \
srchtxt \
ssh \
stat \
streams \
strings \
su \
sulogin \
sum \
sunpc \
svc \
swap \
sync \
sysdef \
syseventadm \
syslogd \
tabs \
tar \
tbl \
tcopy \
tcpd \
tee \
terminfo \
th_tools \
tic \
time \
tip \
tnf \
touch \
tplot \
tput \
trapstat \
troff \
true \
truss \
tty \
ttymon \
uadmin \
ul \
uname \
uniq \
units \
unlink \
unpack \
users \
utmp_update \
utmpd \
valtools \
vgrind \
vi \
volmgt \
w \
wall \
wbem \
wc \
which \
who \
whodo \
wracct \
write \
xntpd \
xargs \
xstr \
yes \
ypcmd \
yppasswd \
zdb \
zdump \
zfs \
zic \
zinject \
zlogin \
zoneadm \
zoneadmd \
zonecfg \
zonename \
zpool \
ztest
$(CLOSED_BUILD)COMMON_SUBDIRS += \
$(CLOSED)/cmd/dodatadm \
$(CLOSED)/cmd/iconv \
$(CLOSED)/cmd/ksh \
$(CLOSED)/cmd/llc2 \
$(CLOSED)/cmd/localedef \
$(CLOSED)/cmd/more_xpg4 \
$(CLOSED)/cmd/mtst \
$(CLOSED)/cmd/od \
$(CLOSED)/cmd/patch \
$(CLOSED)/cmd/pax \
$(CLOSED)/cmd/pcitool \
$(CLOSED)/cmd/printf \
$(CLOSED)/cmd/sed \
$(CLOSED)/cmd/sed_xpg4 \
$(CLOSED)/cmd/smartcard \
$(CLOSED)/cmd/tail \
$(CLOSED)/cmd/tr \
$(CLOSED)/cmd/tr_xpg4
i386_SUBDIRS= \
addbadsec \
biosdev \
diskscan \
OWconfig \
rtc
sparc_SUBDIRS= \
cvcd \
dcs \
drd \
fruadm \
oplhpd \
prtdscp \
prtfru \
scadm \
sckmd \
sf880drd \
stmsboot \
vntsd \
wrsmconf \
wrsmstat
#
# Commands that are messaged. Note that 'lp' and 'man' come first
# (see previous comment about 'lp' and 'man').
#
MSGSUBDIRS= \
lp \
man \
abi \
acctadm \
allocate \
asa \
audio \
audit \
auditd \
auths \
autopush \
awk \
awk_xpg4 \
backup \
banner \
bart \
basename \
bnu \
bsmconv \
bsmrecord \
bsmunconv \
busstat \
cal \
cat \
cdrw \
cfgadm \
checkeq \
checknr \
chgrp \
chmod \
chown \
cksum \
cmd-crypto \
cmd-inet \
cmp \
col \
comm \
compress \
consadm \
coreadm \
cpio \
cpc \
cron \
csh \
csplit \
ctrun \
ctstat \
ctwatch \
cut \
datadm \
date \
dc \
dcs \
dd \
deroff \
devfsadm \
diff \
diffmk \
dladm \
du \
dumpcs \
ed \
env \
eqn \
expand \
expr \
fgrep \
file \
filesync \
find \
fm \
fold \
fs.d \
geniconvtbl \
genmsg \
getconf \
getent \
gettext \
gettxt \
grep \
grep_xpg4 \
grpck \
gss \
halt \
head \
hostname \
id \
isaexec \
iscsi \
join \
krb5 \
kstat \
last \
ldap \
ldapcachemgr \
locale \
lofiadm \
logadm \
logger \
logins \
logname \
ls \
lvm \
mailx \
mesg \
mkdir \
mkpwdict \
mktemp \
more \
msgfmt \
mv \
newgrp \
newtask \
nice \
nispasswd \
nohup \
oawk \
pack \
passwd \
passmgmt \
paste \
pathchk \
pfexec \
pg \
pgrep \
picl \
pools \
power \
pr \
praudit \
print \
profiles \
projadd \
projects \
prstat \
prtdiag \
ps \
psrinfo \
pwconv \
pwd \
raidctl \
ramdiskadm \
rcap \
rcm_daemon \
refer \
regcmp \
renice \
roles \
rm \
rmdir \
rmformat \
scadm \
script \
sdiff \
sgs \
sh \
sleep \
sort \
split \
ssh \
stat \
strings \
su \
sum \
svc \
swap \
syseventadm \
syseventd \
tabs \
tar \
tbl \
tee \
time \
tnf \
touch \
tput \
troff \
tty \
ttymon \
ul \
uname \
uniq \
units \
unlink \
unpack \
valtools \
vgrind \
vi \
volmgt \
w \
wbem \
wc \
who \
whodo \
wracct \
write \
xargs \
yppasswd \
zdump \
zfs \
zic \
zlogin \
zoneadm \
zoneadmd \
zonecfg \
zonename \
zpool
$(CLOSED_BUILD)MSGSUBDIRS += \
$(CLOSED)/cmd/iconv \
$(CLOSED)/cmd/ksh \
$(CLOSED)/cmd/llc2 \
$(CLOSED)/cmd/localedef \
$(CLOSED)/cmd/more_xpg4 \
$(CLOSED)/cmd/od \
$(CLOSED)/cmd/patch \
$(CLOSED)/cmd/pax \
$(CLOSED)/cmd/printf \
$(CLOSED)/cmd/sed \
$(CLOSED)/cmd/sed_xpg4 \
$(CLOSED)/cmd/tail \
$(CLOSED)/cmd/tr \
$(CLOSED)/cmd/tr_xpg4
sparc_MSGSUBDIRS= \
fruadm \
prtdscp \
prtfru \
stmsboot \
vntsd \
wrsmconf \
wrsmstat
#
# commands that use dcgettext for localized time, LC_TIME
#
DCSUBDIRS= \
cal \
cfgadm \
diff \
ls \
pr \
tar \
w \
who \
whodo \
write
$(CLOSED_BUILD)DCSUBDIRS += \
$(CLOSED)/cmd/pax
#
# commands that belong only to the basic security module
#
BSMSUBDIRS= \
allocate \
amt \
audit \
audit_warn \
auditconfig \
auditd \
auditreduce \
auditstat \
praudit \
bsmconv \
bsmrecord \
bsmunconv
#
# commands not owned by the systems group
#
BWOSDIRS=
#
# Commands providing manifests must offer a check target. A recursive check
# target across all commands directories is not currently provided.
#
MANIFEST_TOPDIRS= \
auditd \
bnu \
consadm \
coreadm \
cron \
cvcd \
dispadmin \
drd \
dumpadm \
eeprom \
fm \
intrd \
ipf \
keyserv \
ldapcachemgr \
nscd \
oplhpd \
power \
rexd \
rpcbind \
rpcsvc \
saf \
sf880drd \
smserverd \
syseventd \
syslogd \
utmpd \
vntsd \
ypcmd \
zoneadmd
MANIFEST_SUBDIRS= \
boot/scripts \
cmd-crypto/scripts \
cmd-inet/usr.lib/in.chargend \
cmd-inet/usr.lib/in.daytimed \
cmd-inet/usr.lib/in.dhcpd \
cmd-inet/usr.lib/in.discardd \
cmd-inet/usr.lib/in.echod \
cmd-inet/usr.lib/in.timed \
cmd-inet/usr.lib/inetd \
cmd-inet/usr.lib/slpd \
cmd-inet/usr.sbin \
cmd-inet/usr.sbin/in.ftpd \
cmd-inet/usr.sbin/in.talkd \
dcs/sparc/sun4u \
fs.d/autofs \
fs.d/cachefs \
fs.d/nfs/svc \
gss/gssd \
krb5/kadmin/server \
krb5/krb5kdc \
krb5/kwarn \
krb5/slave \
lp/cmd/lpsched \
lvm/rpc.metad \
lvm/rpc.metamedd \
lvm/rpc.metamhd \
lvm/md_monitord \
lvm/metassist/sysfiles \
lvm/util \
picl/picld \
print/gateway \
print/lp \
rcap/rcapd \
rpcsvc/rpc.bootparamd \
sendmail/lib \
smartcard/daemon \
ssh/etc \
svc/milestone \
ypcmd/yppasswd \
ypcmd/ypupdated \
xntpd/xntpd
all := TARGET = all
install := TARGET = install
clean := TARGET = clean
clobber := TARGET = clobber
lint := TARGET = lint
check := TARGET = check
_msg := TARGET = _msg
_dc := TARGET = _dc
.KEEP_STATE:
SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
.PARALLEL: $(BWOSDIRS) $(SUBDIRS) $(MSGSUBDIRS) $(BSMSUBDIRS) \
$(MANIFEST_SUBDIRS)
all install clean clobber lint: $(FIRST_SUBDIRS) .WAIT $(SUBDIRS) $(BSMSUBDIRS)
check: svccfg_check .WAIT $(MANIFEST_TOPDIRS) $(MANIFEST_SUBDIRS)
svccfg_check:
@$(ECHO) "building requirements for svccfg check ..."; \
(cd $(SRC)/cmd/svc/svccfg && pwd && $(MAKE) $(MFLAGS) native)
#
# The .WAIT directive works around an apparent bug in parallel make.
# Evidently make was getting the target _msg vs. _dc confused under
# some level of parallelization, causing some of the _dc objects
# not to be built.
#
_msg: $(MSGSUBDIRS) $($(MACH)_MSGSUBDIRS) .WAIT _dc
_dc: $(DCSUBDIRS)
#
# Dependencies
#
fs.d: fstyp
$(FIRST_SUBDIRS) $(BWOSDIRS) $(SUBDIRS) $(BSMSUBDIRS) $(MANIFEST_SUBDIRS): FRC
@if [ -f $@/Makefile ]; then \
cd $@; pwd; $(MAKE) $(TARGET); \
else \
true; \
fi
FRC: