source: trunk/src/compile_functions.m @ 575

Last change on this file since 575 was 507, checked in by sommeria, 12 years ago

various improvments and corrections
dtatatree_browser tested

File size: 464 bytes
Line 
1% check
2if isempty(which('mcc'))
3    msgbox_uvmat('no Matlab compiler toolbox mcc installed')
4    return
5end
6display('compiling civ_matlab...')
7% commands to compile civ_matlab and eventually other functions
8mcc -m -R -nojvm -R -nodisplay civ_matlab.m
9system('mv -f civ_matlab bin/');
10system('sed -e ''s#/civ_matlab#/bin/civ_matlab#'' run_civ_matlab.sh > civ_matlab.sh');
11system('rm run_civ_matlab.sh');
12system('chmod +x civ_matlab.sh');
13display('** END **')
14
15
16
Note: See TracBrowser for help on using the repository browser.