summaryrefslogtreecommitdiff
path: root/sci_gateway/cpp/cleaner.sce
blob: d2f9e0c298064626ab961a7d755ff6798929e63d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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('libtest_toolbox.so') <> [] then
  mdelete('libtest_toolbox.so');
end
// ------------------------------------------------------
if fileinfo('libtest_toolbox.cpp') <> [] then
  mdelete('libtest_toolbox.cpp');
end
// ------------------------------------------------------
if fileinfo('libtest_toolbox.hxx') <> [] then
  mdelete('libtest_toolbox.hxx');
end
// ------------------------------------------------------
if fileinfo('libtest_toolbox.h') <> [] then
  mdelete('libtest_toolbox.h');
end
// ------------------------------------------------------
chdir(curdir);
// ------------------------------------------------------