Skip to content
Snippets Groups Projects
Commit 26cb4bc7 authored by Jiří Kalvoda's avatar Jiří Kalvoda
Browse files

SDPA-C fix missing dir in make

parent fc2c248b
No related branches found
No related tags found
No related merge requests found
...@@ -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; \
......
...@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment