source: Sophya/trunk/ArchTOIPipe/cleantstpipes.csh@ 2066

Last change on this file since 2066 was 1985, checked in by ansari, 23 years ago

Correction SMakefile - remise en marche de TOISeqBuffered - Reza 7/5/2002

  • Property svn:executable set to *
File size: 348 bytes
Line 
1#!/bin/csh
2set OBJREP = ${ARCHPDEVREP}/`uname`-$EROSCXX/Objs/
3set EXEREP = ${ARCHPDEVREP}/`uname`-$EROSCXX/Exec/
4foreach f (*.cc)
5 set fo = $OBJREP/$f:r.o
6 if (-e $fo) then
7 set cmd = "rm -f $fo"
8 echo $cmd ; $cmd
9 endif
10 set fe = $EXEREP/$f:r
11 if (-e $fe) then
12 set cmd = "rm -f $fe"
13 echo $cmd ; $cmd
14 endif
15end
16
17exit 0
Note: See TracBrowser for help on using the repository browser.