diff options
author | siddhu8990 | 2015-12-08 11:43:14 +0530 |
---|---|---|
committer | siddhu8990 | 2015-12-08 11:43:14 +0530 |
commit | 56d929da6683ca38ab07870173dba5aadb451403 (patch) | |
tree | 481583d1acbde742f975ea7b140f005d4ac08216 /macros/runsci2c.sci | |
parent | 28917732a0c500c5db111ed49dbd7755758f5f72 (diff) | |
download | scilab2c-56d929da6683ca38ab07870173dba5aadb451403.tar.gz scilab2c-56d929da6683ca38ab07870173dba5aadb451403.tar.bz2 scilab2c-56d929da6683ca38ab07870173dba5aadb451403.zip |
Modified so that code for all three output formats can be generated
Diffstat (limited to 'macros/runsci2c.sci')
-rw-r--r-- | macros/runsci2c.sci | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/runsci2c.sci b/macros/runsci2c.sci index ac826a3a..91587031 100644 --- a/macros/runsci2c.sci +++ b/macros/runsci2c.sci @@ -105,7 +105,7 @@ mkdir(SCI2COutputPath+"/interfaces/"); PrintStepInfo('Copying sources', FileInfo.GeneralReport,'both');
for i = 1:size(allSources, "*")
// DEBUG only
- disp("Copying "+allSources(i)+" in "+SCI2COutputPath+"/src/c/");
+ //disp("Copying "+allSources(i)+" in "+SCI2COutputPath+"/src/c/");
copyfile(allSources(i), SCI2COutputPath+"/src/c/");
end
@@ -113,7 +113,7 @@ end PrintStepInfo('Copying headers', FileInfo.GeneralReport,'both');
for i = 1:size(allHeaders, "*")
// DEBUG only
- disp("Copying "+allHeaders(i)+" in "+SCI2COutputPath+"/includes/");
+ //disp("Copying "+allHeaders(i)+" in "+SCI2COutputPath+"/includes/");
copyfile(allHeaders(i), SCI2COutputPath+"/includes/");
end
@@ -121,7 +121,7 @@ end PrintStepInfo('Copying interfaces', FileInfo.GeneralReport,'both');
for i = 1:size(allInterfaces, "*")
// DEBUG only
- disp("Copying "+allInterfaces(i)+" in "+SCI2COutputPath+"/interfaces/");
+ //disp("Copying "+allInterfaces(i)+" in "+SCI2COutputPath+"/interfaces/");
copyfile(allInterfaces(i), SCI2COutputPath+"/interfaces/");
end
|