source: trunk/src/compile_functions.m @ 644

Last change on this file since 644 was 589, checked in by sommeria, 11 years ago

various minor corrections made

File size: 580 bytes
RevLine 
[503]1% check
[507]2if isempty(which('mcc'))
[503]3    msgbox_uvmat('no Matlab compiler toolbox mcc installed')
4    return
5end
6display('compiling civ_matlab...')
[481]7% commands to compile civ_matlab and eventually other functions
[589]8if ~exist('bin','dir')
9    [success,errormsg]=mkdir('bin');
10    if success~=1
11        display(errormsg)
12    end
13end
[430]14mcc -m -R -nojvm -R -nodisplay civ_matlab.m
[481]15system('mv -f civ_matlab bin/');
16system('sed -e ''s#/civ_matlab#/bin/civ_matlab#'' run_civ_matlab.sh > civ_matlab.sh');
17system('rm run_civ_matlab.sh');
18system('chmod +x civ_matlab.sh');
[503]19display('** END **')
[430]20
21
[481]22
Note: See TracBrowser for help on using the repository browser.