| 12345678910111213141516171819202122232425 | @ECHO OFFREM StarPU --- Runtime system for heterogeneous multicore architectures.REMREM Copyright (C) 2013-2015,2017                           CNRSREMREM 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.REMTITLE 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
 |