~ubuntu-branches/ubuntu/natty/suitesparse/natty

« back to all changes in this revision

Viewing changes to Makefile

  • 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:
24
24
 
25
25
library: default
26
26
 
27
 
# Compile the MATLAB mexFunctions
 
27
# Compile the MATLAB mexFunctions (except RBio and UFcollection)
28
28
mex:
29
29
        ( cd AMD ; $(MAKE) mex )
30
30
        ( cd CAMD ; $(MAKE) mex )
35
35
        ( cd CCOLAMD ; $(MAKE) mex )
36
36
        ( cd CHOLMOD ; $(MAKE) mex )
37
37
        ( cd UMFPACK ; $(MAKE) mex )
 
38
        ( cd CXSparse ; $(MAKE) mex )
38
39
        ( cd CSparse ; $(MAKE) mex )
39
 
        ( cd RBio ; $(MAKE) )
40
 
        ( cd UFcollection ; $(MAKE) )
41
40
 
42
41
# Remove all files not in the original distribution
43
42
purge:
54
53
        ( cd CHOLMOD ; $(MAKE) purge )
55
54
        ( cd CSparse ; $(MAKE) purge )
56
55
        ( cd CXSparse ; $(MAKE) purge )
57
 
        ( cd RBio ; $(MAKE) purge )
58
 
        ( cd UFcollection ; $(MAKE) purge )
 
56
        ( cd RBio ; $(RM) *.mex* )
 
57
        ( cd UFcollection ; $(RM) *.mex* )
59
58
#       ( cd LPDASA ; $(MAKE) purge )
60
59
#       ( cd PARAKLETE ; $(MAKE) purge )
61
60
 
74
73
        ( cd CHOLMOD ; $(MAKE) clean )
75
74
        ( cd CSparse ; $(MAKE) clean )
76
75
        ( cd CXSparse ; $(MAKE) clean )
77
 
        ( cd RBio ; $(MAKE) clean )
78
 
        ( cd UFcollection ; $(MAKE) clean )
79
76
#       ( cd LPDASA ; $(MAKE) clean )
80
77
#       ( cd PARAKLETE ; $(MAKE) clean )
81
78