source: modipsl/trunk/util/clr_make @ 12

Last change on this file since 12 was 12, checked in by bellier, 17 years ago

JB: svn now !

  • Property svn:executable set to *
File size: 623 bytes
Line 
1#!/bin/ksh
2# $Id$
3#---------------------------------------------------------------------
4#- Suppression des Makefile propres a un environnement
5#---------------------------------------------------------------------
6d_n=$(dirname $0)
7#-
8l_rep=$(find ${d_n}/.. -name AA_make -print)
9#-
10echo "Suppression des Makefile";
11for i in $l_rep
12do
13  j=${i%/AA_make}
14  echo "Suppression dans $j ...";
15  rm -f $j/Makefile
16done
17l_prism=${d_n}'/../prism' 
18if [ -d ${l_prism} ]; then
19  rm -f ${d_n}/../prism/src/mod/oasis3/COMP_oasis3*
20  rm -f ${d_n}/../prism/util/COMP_libs*
21  echo "Suppression de COMP_oasis3 et COMP_libs" 
22fi
23#-
24exit 0;
Note: See TracBrowser for help on using the repository browser.