~logan/ubuntu/trusty/suitesparse/4.2.1-3ubuntu1

« back to all changes in this revision

Viewing changes to CSparse/MATLAB/Test/cs_test_make.m

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2007-05-29 09:36:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529093629-zowquo0b7slkk6nc
Tags: 3.0.0-2
* suitesparse builds properly twice in a row
* Bug fix: "suitesparse - FTBFS: Broken build depens: libgfortran1-dev",
  thanks to Bastian Blank (Closes: #426349).
* Bug fix: "suitesparse_3.0.0-1: FTBFS: build-depends on
  libgfortran1-dev", thanks to Steve Langasek (Closes: #426354).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
%   cs_test_make
7
7
% See also: testall
8
8
 
9
 
%   Copyright 2006, Timothy A. Davis.
 
9
%   Copyright 2006-2007, Timothy A. Davis.
10
10
%   http://www.cise.ufl.edu/research/sparse
11
11
 
12
12
if (nargin < 1)
23
23
for i = 1:length(mexfunc)
24
24
    [s t tobj] = cs_must_compile ('', mexfunc{i}, '_mex', ...
25
25
        ['.' mexext], 'cs_test_make.m', force) ;
26
 
    if (s || tobj < timestamp)
 
26
    if (s | tobj < timestamp)                                               %#ok
27
27
        cmd = ['mex -O -output ' mexfunc{i} ' ' mexfunc{i} '_mex.c -I..' ...
28
 
            filesep '..' filesep 'Source -I..' ...
 
28
            filesep '..' filesep 'Include -I..' ...
29
29
            filesep 'CSparse ' object_files] ;
30
30
        fprintf ('%s\n', cmd) ;
31
31
        eval (cmd) ;