diff Problems/private/make.m @ 16:41a5a3c26961

(none)
author idamnjanovic
date Thu, 25 Mar 2010 14:05:46 +0000
parents 207a6ae9a76f
children
line wrap: on
line diff
--- a/Problems/private/make.m	Thu Mar 25 14:05:27 2010 +0000
+++ b/Problems/private/make.m	Thu Mar 25 14:05:46 2010 +0000
@@ -13,7 +13,7 @@
 %  Technion, Haifa 32000 Israel
 %  ronrubin@cs
 %
-%  April 2009
+%  August 2009
 
 
 % detect platform 
@@ -32,9 +32,9 @@
 
 % Compile files %
 
-sourcefiles = {'addtocols.c','collincomb.c','rowlincomb.c'};
+sourcefiles = {{'addtocols.c'}, {'collincomb.c'}, {'rowlincomb.c'}, {'sprow.c','mexutils.c'}, {'im2colstep.c'}, {'col2imstep.c'}};
 
 for i = 1:length(sourcefiles)
-  printf('Compiling %s...', sourcefiles{i});
-  mex(sourcefiles{i},compile_params{:});
+  printf('Compiling %s...', sourcefiles{i}{1});
+  mex(sourcefiles{i}{:},compile_params{:});
 end