a script to generate a list of headers for Makefile.disklabel.

This commit is contained in:
yamt 2007-08-07 12:38:23 +00:00
parent 21a5d0733c
commit f4069de4f3

18
tools/mkheaderlist.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/sh
# $NetBSD: mkheaderlist.sh,v 1.1 2007/08/07 12:38:23 yamt Exp $
set -e
mklist()
{
echo "# \$NetBSD\$"
echo "#"
echo '# do not edit; this file was automatically generated by:'
echo '# $NetBSD: mkheaderlist.sh,v 1.1 2007/08/07 12:38:23 yamt Exp $' | sed -e 's/\$//g'
echo
cd ../sys/arch && find . -name disklabel.h -o -name elf_machdep.h
}
LIST=headerlist
rm -f ${LIST}
mklist > ${LIST}