2009-06-05 Colin D Bennett <colin@gibibit.com>
[grub2/phcoder.git] / gendistlist.sh
blob011554ddf592ada64d464c8c2990658931a155cf
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 geninit.sh geninitheader.sh genkernsyms.sh.in \
20 genmk.rb genmoddep.awk genmodsrc.sh genpartmaplist.sh gensymlist.sh.in
21 install-sh mkinstalldirs stamp-h.in"
23 DISTDIRS="boot bus commands conf disk docs font fs hello hook include io kern lib \
24 loader normal partmap term util video"
26 LC_COLLATE=C
27 export LC_COLLATE
29 for f in $EXTRA_DISTFILES; do
30 echo $f
31 done
33 dir=`dirname $0`
34 cd $dir
36 for dir in $DISTDIRS; do
37 for d in `find $dir -type d | sed '/\/\.svn$/d;\/\.svn\//d' | sort`; do
38 find $d -maxdepth 1 -name '*.[chSy]' -o -name '*.mk' -o -name '*.rmk' \
39 -o -name '*.rb' -o -name '*.in' -o -name '*.tex' -o -name '*.texi' \
40 -o -name 'grub.cfg' -o -name 'README' -o -name '*.sc' -o -name 'mdate.sh' \
41 | sort
42 done
43 done