summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/toolbox/MultiNcut/compileAll.m
blob: 16fe77b2186b1883db133fdf96bdb8e41dd775a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
function compileAll(Cdir);

files = dir([Cdir,'/*.c']);

for j=1:length(files),
	
	cm = sprintf('mex %s',files(j).name);
disp(cm);
eval(cm);
end