c Copyright (C) 2008-2014 Vincent Eymet c c KDISTRIBUTION is free software; you can redistribute it and/or modify c it under the terms of the GNU General Public License as published by c the Free Software Foundation; either version 3, or (at your option) c any later version. c KDISTRIBUTION is distributed in the hope that it will be useful, c but WITHOUT ANY WARRANTY; without even the implied warranty of c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the c GNU General Public License for more details. c You should have received a copy of the GNU General Public License c along with KDISTRIBUTION; if not, see c subroutine clean() implicit none include 'max.inc' c c Purpose: to clean temporary files c character*100 tfile c label integer strlen character*(Nchar_mx) label label='subroutine clean' tfile='host' call rmfile(tfile) tfile='nlines_*' call rmfile(tfile) tfile='local' call rmfile(tfile) tfile='grep_res' call rmfile(tfile) tfile='list.txt' call rmfile(tfile) return end