NetBSD/distrib/sets/makeflist

93 lines
2.0 KiB
Plaintext
Raw Normal View History

#!/bin/sh
#
# $NetBSD: makeflist,v 1.9 1998/07/02 06:36:35 jonathan Exp $
#
# Print out the files in some or all lists.
# Usage: makeflist [-b] [-x] [-a arch] [-m machine] [-s setsdir] [setname ...]
#
1994-08-29 19:21:02 +04:00
# set defaults
machine=${MACHINE:-`printf 'xxx:\n\techo ${MACHINE}' | make -s -f-`}
arch=${MACHINE_ARCH:-`printf 'xxx:\n\techo ${MACHINE_ARCH}' | make -s -f-`}
setd=`pwd`
nlists="base comp etc games man misc text"
1997-10-28 20:29:45 +03:00
xlists="xbase xcomp xcontrib xfont xserver"
lists=$nlists
1994-08-29 19:21:02 +04:00
# handle args
while : ; do
case $1 in
-b*)
lists="$xlists $nlists"
;;
-x*)
lists=$xlists
;;
-a*)
arch=$2; shift
;;
-m*)
machine=$2; shift
;;
-s*)
setd=$2; shift
;;
-*)
cat 1>&2 <<USAGE
Usage: $0 [-b] [-x] [-a arch] [-m machine] [-s setsdir] [setname ...]
-b make netbsd + x11 lists
-x only make x11 lists
-a arch set arch (e.g, m68k, mips, powerpc) [$arch]
-m machine set machine (e.g, amiga, i386, macppc) [$machine]
-s setsdir directory to find sets [$setd]
[setname ...] sets to build [$lists]
USAGE
exit 1
;;
*)
break
;;
esac
shift
done
if [ -n "$1" ]; then
lists="$@"
fi
1994-08-29 19:21:02 +04:00
# Compute toolchain used on target cpu.
if [ "$machine" = "vax" ]; then
shlib=
elif [ "$arch" = "mips" -o "$machine" = "alpha" ]; then
shlib=elf
else
shlib=aout
fi
1994-08-29 19:21:02 +04:00
# EXTRA SPECIAL (not done here): secr
for setname in $lists; do
cat $setd/lists/$setname/mi
if [ "$machine" != "$cpu" -a -f $setd/lists/$setname/ad.${arch} ]; then
cat $setd/lists/$setname/ad.${arch}
fi
if [ -f $setd/lists/$setname/md.${machine} ]; then
cat $setd/lists/$setname/md.${machine}
fi
if [ "$shlib" != "" ]; then
if [ -f $setd/lists/$setname/shl.mi ]; then
cat $setd/lists/$setname/shl.mi
fi
if [ -f $setd/lists/$setname/shl.${shlib} ]; then
cat $setd/lists/$setname/shl.${shlib}
fi
fi
# Split man/md_share into: this machine, other machine
if [ $setname = man ]; then
grep ${machine} $setd/lists/man/md_share
fi
if [ $setname = misc ]; then
grep -v ${machine} $setd/lists/man/md_share
fi
done | sort -u