blob: b2c4ed1a264b1db7a8bc5279fa8e2fe01ec99945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
This file is part of MXE.
See index.html for further information.
From 169f88aef7ff1d302aa3eac48d779d009780b87f Mon Sep 17 00:00:00 2001
From: Mark Brand <mabrand@mabrand.nl>
Date: Sun, 20 May 2012 23:41:27 +0200
Subject: [PATCH] build lib not demo
---
CHOLMOD/Makefile | 2 +-
UMFPACK/Makefile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CHOLMOD/Makefile b/CHOLMOD/Makefile
index 97911ef..4a3bcae 100644
--- a/CHOLMOD/Makefile
+++ b/CHOLMOD/Makefile
@@ -14,7 +14,7 @@ include ../SuiteSparse_config/SuiteSparse_config.mk
# Compile the C-callable libraries and the Demo programs.
all:
- ( cd Demo ; $(MAKE) )
+ ( cd Lib ; $(MAKE) )
# Compile the C-callable libraries only.
library:
diff --git a/UMFPACK/Makefile b/UMFPACK/Makefile
index 622ee39..e19cd2f 100644
--- a/UMFPACK/Makefile
+++ b/UMFPACK/Makefile
@@ -12,7 +12,7 @@ include ../SuiteSparse_config/SuiteSparse_config.mk
# compile all C code (except hb, fortran, and fortran64), incl. AMD and demos
all:
- ( cd Demo ; $(MAKE) )
+ ( cd Lib ; $(MAKE) )
# compile just the C-callable UMFPACK library
library:
--
1.7.10.4
|