Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Binary paint shop problem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jiří Kalvoda
Binary paint shop problem
Commits
26cb4bc7
Commit
26cb4bc7
authored
1 year ago
by
Jiří Kalvoda
Browse files
Options
Downloads
Patches
Plain Diff
SDPA-C fix missing dir in make
parent
fc2c248b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
sdpa-c/Makefile
+1
-0
1 addition, 0 deletions
sdpa-c/Makefile
sdpa-c/SuiteSparse_src/GraphBLAS/Makefile
+3
-3
3 additions, 3 deletions
sdpa-c/SuiteSparse_src/GraphBLAS/Makefile
with
4 additions
and
3 deletions
sdpa-c/Makefile
+
1
−
0
View file @
26cb4bc7
...
@@ -59,6 +59,7 @@ $(mumps_lib):
...
@@ -59,6 +59,7 @@ $(mumps_lib):
rm
-rf
mumps
;
\
rm
-rf
mumps
;
\
cp
-r
MUMPS_5.1.2_src/
$(
mumps_dir
);
\
cp
-r
MUMPS_5.1.2_src/
$(
mumps_dir
);
\
cd
$(
mumps_dir
);
\
cd
$(
mumps_dir
);
\
mkdir
lib
;
\
cp
Make.inc/Makefile.inc.generic.SEQ Makefile.inc
;
\
cp
Make.inc/Makefile.inc.generic.SEQ Makefile.inc
;
\
echo
"CC = "
$(
CC
)
>>
Makefile.inc
;
\
echo
"CC = "
$(
CC
)
>>
Makefile.inc
;
\
echo
"FC = "
$(
FC
)
>>
Makefile.inc
;
\
echo
"FC = "
$(
FC
)
>>
Makefile.inc
;
\
...
...
This diff is collapsed.
Click to expand it.
sdpa-c/SuiteSparse_src/GraphBLAS/Makefile
+
3
−
3
View file @
26cb4bc7
...
@@ -12,11 +12,11 @@
...
@@ -12,11 +12,11 @@
# build the GraphBLAS library (static and dynamic) and run a quick test
# build the GraphBLAS library (static and dynamic) and run a quick test
default
:
default
:
(
cd
build
;
cmake
$(
CMAKE_OPTIONS
)
..
;
$(
MAKE
)
;
cd
../Demo
;
./demo
)
(
mkdir
-p
build
;
cd
build
;
cmake
$(
CMAKE_OPTIONS
)
..
;
$(
MAKE
)
;
cd
../Demo
;
./demo
)
# just build the static and dynamic libraries; do not run the demo
# just build the static and dynamic libraries; do not run the demo
library
:
library
:
(
cd
build
;
cmake
$(
CMAKE_OPTIONS
)
..
;
$(
MAKE
)
)
(
mkdir
-p
build
;
cd
build
;
cmake
$(
CMAKE_OPTIONS
)
..
;
$(
MAKE
)
)
# the same as "make library"
# the same as "make library"
static
:
library
static
:
library
...
@@ -24,7 +24,7 @@ static: library
...
@@ -24,7 +24,7 @@ static: library
# installs GraphBLAS to the install location defined by cmake, usually
# installs GraphBLAS to the install location defined by cmake, usually
# /usr/local/lib and /usr/local/include
# /usr/local/lib and /usr/local/include
install
:
install
:
(
cd
build
;
cmake
$(
CMAKE_OPTIONS
)
..
;
$(
MAKE
)
;
$(
MAKE
)
install
)
(
mkdir
-p
build
;
cd
build
;
cmake
$(
CMAKE_OPTIONS
)
..
;
$(
MAKE
)
;
$(
MAKE
)
install
)
# create the Doc/GraphBLAS_UserGuide.pdf
# create the Doc/GraphBLAS_UserGuide.pdf
docs
:
docs
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment