txt = change_path_makefile(MakeName)
Add here a paragraph of the function description. Other paragraph can be added
Add here a paragraph of the function description
Add here scilab instructions and comments
function txt=change_path_makefile(MakeName) txt=mgetl(MakeName); for j=1:size(txt,1) //change scilab path if strindex(txt(j),'SCIDIR =')<>[] then txt(j)='SCIDIR = '+SCI; end //change MODNUM path if strindex(txt(j),'MODNUMDIR =') <>[] then txt(j)='MODNUMDIR = '+MODNUMDIR; end mputl(txt,MakeName); end endfunction