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

« back to all changes in this revision

Viewing changes to CSparse/Demo/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:
1
1
CC = cc
2
2
CFLAGS = -O
3
3
 
4
 
I = -I../Source
 
4
I = -I../Include
5
5
 
6
 
CS = ../Source/libcsparse.a
 
6
CS = ../Lib/libcsparse.a
7
7
 
8
8
all: lib cs_demo1 cs_demo2 cs_demo3
9
9
        - ./cs_demo1 < ../Matrix/t1
19
19
        - ./cs_demo3 < ../Matrix/bcsstk16
20
20
 
21
21
lib:
22
 
        ( cd ../Source ; $(MAKE) )
 
22
        ( cd ../Lib ; $(MAKE) )
23
23
 
24
24
cs_demo1: lib cs_demo1.c Makefile
25
25
        $(CC) $(CFLAGS) $(I) -o cs_demo1 cs_demo1.c $(CS) -lm