view Problems/private/private/make.m @ 57:3a58e70e8cbe

(none)
author idamnjanovic
date Mon, 14 Mar 2011 17:06:07 +0000
parents
children
line wrap: on
line source
function make
%MAKE Build the OMPBox package.
%  MAKE compiles all OMPBox MEX functions, using Matlab's default MEX
%  compiler. If the MEX compiler has not been set-up before, please run
%
%    mex -setup
%
%  before using this MAKE file.

%  Ron Rubinstein
%  Computer Science Department
%  Technion, Haifa 32000 Israel
%  ronrubin@cs
%
%  August 2009


% detect platform 

compstr = computer;
is64bit = strcmp(compstr(end-1:end),'64');


% compilation parameters

compile_params = cell(0);
if (is64bit)
  compile_params{1} = '-largeArrayDims';
end


% Compile files %

ompsources = {'mexutils.c','ompcore.c','omputils.c','myblas.c','ompprof.c'};

disp('Compiling ompmex...');
mex('ompmex.c', ompsources{:},compile_params{:});

disp('Compiling omp2mex...');
mex('omp2mex.c',ompsources{:},compile_params{:});