git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12945 626c5289-ae23-0410-ae9c-e8d60b6d4f22
22 lines
814 B
Scilab
22 lines
814 B
Scilab
// This file is released under the 3-clause BSD license. See COPYING-BSD.
|
|
// Generated by builder.sce : Please, do not edit this file
|
|
// cleaner.sce
|
|
// ------------------------------------------------------
|
|
curdir = pwd();
|
|
cleaner_path = get_file_path('cleaner.sce');
|
|
chdir(cleaner_path);
|
|
// ------------------------------------------------------
|
|
if fileinfo('loader.sce') <> [] then
|
|
mdelete('loader.sce');
|
|
end
|
|
// ------------------------------------------------------
|
|
if fileinfo('libexamplelib.so') <> [] then
|
|
mdelete('libexamplelib.so');
|
|
end
|
|
// ------------------------------------------------------
|
|
if fileinfo('libexamplelib.c') <> [] then
|
|
mdelete('libexamplelib.c');
|
|
end
|
|
// ------------------------------------------------------
|
|
chdir(curdir);
|
|
// ------------------------------------------------------
|