grub/gendistlist.sh
fzielcke 210db6c653 2008-08-16 Felix Zielcke <fzielcke@z-51.de>
* gendistlist.sh (EXTRA_DISTFILES): Remove gensymlist.sh,
        genkernsyms.sh.  Add geninit.sh, geninitheader.sh, genkernsyms.sh.in,
        genmoddep.awk, gensymlist.sh.in
        (DISTDIRS): Add bus, docs, hook, lib
        * DISTLIST: Regenerated.
        * NEWS: Add cygwin support and change `os-prober' entry a bit.

(NEWS is in previous commit.)
2008-08-16 20:21:07 +00:00

39 lines
1.3 KiB
Bash

#! /bin/sh
#
# Copyright (C) 2005, 2008 Free Software Foundation, Inc.
#
# This gendistlist.sh is free software; the author
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
# Generate a list of distributed files.
EXTRA_DISTFILES="AUTHORS COPYING ChangeLog DISTLIST INSTALL NEWS README \
THANKS TODO Makefile.in aclocal.m4 autogen.sh config.guess \
config.h.in config.sub configure configure.ac gencmdlist.sh \
gendistlist.sh genfslist.sh geninit.sh geninitheader.sh genkernsyms.sh.in \
genmk.rb genmoddep.awk genmodsrc.sh genpartmaplist.sh gensymlist.sh.in
install-sh mkinstalldirs stamp-h.in"
DISTDIRS="boot bus commands conf disk docs font fs hello hook include io kern lib \
loader normal partmap term util video"
for f in $EXTRA_DISTFILES; do
echo $f
done
dir=`dirname $0`
cd $dir
for dir in $DISTDIRS; do
for d in `find $dir -type d | sort`; do
find $d -maxdepth 1 -name '*.[chS]' -o -name '*.mk' -o -name '*.rmk' \
-o -name '*.rb' -o -name '*.in' \
| sort
done
done