source: modipsl/trunk/util/clr_make @ 2

Last change on this file since 2 was 2, checked in by rblod, 18 years ago

First import of modipsl utilities

  • Property svn:executable set to *
File size: 668 bytes
Line 
1#!/bin/ksh
2# $Id: clr_make,v 2.3 2005/04/05 14:35:47 adm Exp $
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.