blob: 4afc35c5c3cd4548bce25adcc8f4360951ff945f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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('libFOSSEE_Image_Processing_Toolbox.so') <> [] then
mdelete('libFOSSEE_Image_Processing_Toolbox.so');
end
// ------------------------------------------------------
if fileinfo('libFOSSEE_Image_Processing_Toolbox.c') <> [] then
mdelete('libFOSSEE_Image_Processing_Toolbox.c');
end
// ------------------------------------------------------
chdir(curdir);
// ------------------------------------------------------
|