2009-11-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
[grub2.git] / gendistlist.sh
blob36685a092cd6fb3d48856f22ede96b66f39bb3b5
1 #! /bin/sh
3 # Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc.
5 # This gendistlist.sh is free software; the author
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
14 # Generate a list of distributed files.
16 EXTRA_DISTFILES="AUTHORS COPYING ChangeLog DISTLIST INSTALL NEWS README \
17 THANKS TODO Makefile.in aclocal.m4 autogen.sh config.guess \
18 config.h.in config.sub configure configure.ac gencmdlist.sh \
19 gendistlist.sh genfslist.sh genhandlerlist.sh geninit.sh \
20 geninitheader.sh genkernsyms.sh.in genmk.rb genmoddep.awk \
21 genmodsrc.sh genpartmaplist.sh genparttoollist.sh \
22 gensymlist.sh.in install-sh mkinstalldirs stamp-h.in"
24 DISTDIRS="boot bus commands conf disk docs efiemu font fs hello hook include io \
25 kern lib loader mmap normal partmap parttool script term util video"
27 LC_COLLATE=C
28 export LC_COLLATE
30 for f in $EXTRA_DISTFILES; do
31 echo $f
32 done
34 dir=`dirname $0`
35 cd $dir
37 for dir in $DISTDIRS; do
38 for d in `find $dir -type d -not -name .svn -not -name .bzr | sort`; do
39 find $d -maxdepth 1 -name '*.[chSy]' -o -name '*.mk' -o -name '*.rmk' \
40 -o -name '*.rb' -o -name '*.in' -o -name '*.tex' -o -name '*.texi' \
41 -o -name '*.info' -o -name 'grub.cfg' -o -name 'README' \
42 -o -name '*.sc' -o -name 'mdate-sh' -o -name '*.sh' \
43 -o -name 'grub-dumpdevtree' -o -name '*.lua' | sort
44 done
45 done