Salome HOME
Copyrights update 2015.
[modules/yacs.git] / src / wrappergen / src / HXX2SALOME_GENERIC_CLASS_NAME_SRC / root_clean
1 #!/bin/sh
2 # Copyright (C) 2006-2015  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
22 cd ${CONF_DIR}
23
24 TO_CLEAN=
25 TO_CLEAN=${TO_CLEAN}' build_configure.log'
26 TO_CLEAN=${TO_CLEAN}' Makefile.am.list'
27 TO_CLEAN=${TO_CLEAN}' aclocal.m4'
28 TO_CLEAN=${TO_CLEAN}' autom4te*'
29 TO_CLEAN=${TO_CLEAN}' configure'
30 TO_CLEAN=${TO_CLEAN}' configure.in'
31 TO_CLEAN=${TO_CLEAN}' missing'
32 TO_CLEAN=${TO_CLEAN}' install-sh'
33 TO_CLEAN=${TO_CLEAN}' config.guess'
34 TO_CLEAN=${TO_CLEAN}' config.sub'
35 TO_CLEAN=${TO_CLEAN}' depcomp'
36 TO_CLEAN=${TO_CLEAN}' ltmain.sh'
37
38 rm -rf $TO_CLEAN > /dev/null
39
40 l=`find . -name "Makefile.in" -or -name "*~"`
41
42 if test X"$l" != X ; then
43     rm -f $l
44 fi