| 1234567891011121314151617181920212223242526 | @ECHO OFFREM StarPU --- Runtime system for heterogeneous multicore architectures.REMREM Copyright (C) 2013, 2014  Centre National de la Recherche ScientifiqueREMREM StarPU is free software; you can redistribute it and/or modifyREM it under the terms of the GNU Lesser General Public License as published byREM the Free Software Foundation; either version 2.1 of the License, or (atREM your option) any later version.REMREM StarPU is distributed in the hope that it will be useful, butREM WITHOUT ANY WARRANTY; without even the implied warranty ofREM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.REMREM See the GNU Lesser General Public License in COPYING.LGPL for more details.TITLE MSVC StarPU CleaningECHO.ECHO MSVC StarPU CleaningECHO.FOR %%d in (debug starpu\debug ipch) DO IF EXIST %%d RMDIR /S /Q %%dFOR %%f in (starpu.sdf starpu.suo) DO IF EXIST %%f DEL %%f
 |