From: vsr Date: Thu, 3 Nov 2011 13:41:00 +0000 (+0000) Subject: Add clean_configure script X-Git-Tag: RELIQUAT_6x_15112011 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=97d74f24e2ec7768e7a6786dca5fc4f55d43285e;p=modules%2Fjobmanager.git Add clean_configure script --- diff --git a/Makefile.am b/Makefile.am index d57ca68..0e85eca 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,4 +21,4 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = idl src doc -EXTRA_DIST = build_configure +EXTRA_DIST = build_configure clean_configure diff --git a/clean_configure b/clean_configure new file mode 100755 index 0000000..14480bd --- /dev/null +++ b/clean_configure @@ -0,0 +1,33 @@ +#! /bin/sh +# Copyright (C) 2009-2011 CEA/DEN, EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + +# --- +# File : clean_configure +# Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com) +# --- +# +rm -rf autom4te.cache aclocal.m4 configure config.guess config.sub build_configure.log install-sh ltmain.sh missing depcomp +rm -rf jobmanager_config.h.in INSTALL +find . -name "*~" -print -exec rm {} \; +find . -name "*.pyc" -print -exec rm {} \; + +# ... + +find . -name Makefile.in | xargs rm -f