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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#-------------------------------------------------------------------------------
# SuiteSparse/SuiteSparse_config/Makefile
#-------------------------------------------------------------------------------
# SuiteSparse_config, Copyright (c) 2012-2023, Timothy A. Davis.
# All Rights Reserved.
# SPDX-License-Identifier: BSD-3-clause
#-------------------------------------------------------------------------------
# A simple Makefile for SuiteSparse_config, which relies on cmake to do the
# actual build. All the work is done in cmake so this Makefile is just for
# convenience.
# To compile with an alternate compiler:
#
# make CC=gcc CXX=g++
#
# To compile/install for system-wide usage and for local usage in
# SuiteSparse/lib and SuiteSparse/include:
#
# make
# sudo make install
#
# To compile/install for local usage (SuiteSparse/lib and SuiteSparse/include):
#
# make local
# make install
#
# To clean up the files:
#
# make clean
JOBS ?=
:
# default is to install only in /usr/local
:
# install only in SuiteSparse/lib and SuiteSparse/include
:
# install only in /usr/local (default)
:
:
:
:
# just compile after running cmake; do not run cmake again
:
# just run cmake to set things up
:
:
# remove any installed libraries and #include files
:
# remove all files not in the distribution
:
:
:
: