| 1 | #
 | 
|---|
| 2 | #    MoleCuilder - creates and alters molecular systems
 | 
|---|
| 3 | #    Copyright (C) 2008-2012 University of Bonn
 | 
|---|
| 4 | #
 | 
|---|
| 5 | #    This program is free software: you can redistribute it and/or modify
 | 
|---|
| 6 | #    it under the terms of the GNU General Public License as published by
 | 
|---|
| 7 | #    the Free Software Foundation, either version 3 of the License, or
 | 
|---|
| 8 | #    (at your option) any later version.
 | 
|---|
| 9 | #
 | 
|---|
| 10 | #    This program is distributed in the hope that it will be useful,
 | 
|---|
| 11 | #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
| 12 | #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
| 13 | #    GNU General Public License for more details.
 | 
|---|
| 14 | #
 | 
|---|
| 15 | #    You should have received a copy of the GNU General Public License
 | 
|---|
| 16 | #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
|---|
| 17 | #
 | 
|---|
| 18 | AT_SETUP([Checking that header files get distributed])
 | 
|---|
| 19 | AT_KEYWORDS([CodeCheck header])
 | 
|---|
| 20 | 
 | 
|---|
| 21 | ok="ExportGraph.hpp ExportGraph_ToFiles.hpp ExportGraph_ToJobs.hpp"
 | 
|---|
| 22 | echo "${#ok[*]} are ok not to get distributed: ${ok[*]}."
 | 
|---|
| 23 | Makefiles=`find ${abs_top_srcdir}/src -name Makefile.am`
 | 
|---|
| 24 | liste=`find ${abs_top_srcdir}/src -name '*.hpp'`
 | 
|---|
| 25 | for header in $liste; do
 | 
|---|
| 26 |   filename=`basename $header`
 | 
|---|
| 27 |   # check whether it is one of the excluded ones
 | 
|---|
| 28 |   found=0
 | 
|---|
| 29 |   for item in $ok
 | 
|---|
| 30 |   do
 | 
|---|
| 31 |     if test x"$item" == x"$filename"
 | 
|---|
| 32 |     then
 | 
|---|
| 33 |       found=1
 | 
|---|
| 34 |       break
 | 
|---|
| 35 |     fi
 | 
|---|
| 36 |   done
 | 
|---|
| 37 |   # if not, check whether it contains the include
 | 
|---|
| 38 |   if test $found -eq 0
 | 
|---|
| 39 |   then
 | 
|---|
| 40 |     AT_CHECK([egrep -q $filename $Makefiles], 0, [ignore], [ignore], [echo "$filename is not present in any Makefile.am and thus won't get distributed. Either add to the module's Makefile.am's ..._SOURCES or at least to EXTRADIST."])
 | 
|---|
| 41 |   fi
 | 
|---|
| 42 | done
 | 
|---|
| 43 | 
 | 
|---|
| 44 | AT_CLEANUP
 | 
|---|