blob: 03aedafc294acd4ed3caff39c0d6871d8058ffa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder_gateway.sce: Please, do not edit this file
sci_gateway_dir = get_absolute_file_path("cleaner_gateway.sce");
current_dir = pwd();
chdir(sci_gateway_dir);
if ( isdir("cpp") ) then
chdir("cpp");
exec("cleaner.sce");
mdelete("cleaner.sce");
end
chdir(current_dir);
clear sci_gateway_dir current_dir;
|