blob: 88f0fb2a3ac572f65c538e5525e4433e7b7774e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// This file is released into the public domain
Directories = [ "AVR" ];
current_path_buildmacros = get_absolute_file_path("buildmacros.sce");
for K=1:size(Directories,"*")
myfile = current_path_buildmacros + filesep() + Directories(K) + filesep() + "buildmacros.sce";
if isfile(myfile) then
exec(myfile);
end
end
clear current_path_buildmacros;
tbx_build_macros(TOOLBOX_NAME, get_absolute_file_path('buildmacros.sce'));
clear tbx_build_macros;
|