Skip to content

Commit

Permalink
More dependencies for parallel builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pao committed May 1, 2012
1 parent 220be6d commit 735cc6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -470,11 +470,11 @@ arpack-ng_$(ARPACK_VER).tar.gz:
arpack-ng_$(ARPACK_VER)/configure: arpack-ng_$(ARPACK_VER).tar.gz
tar zxf $<
touch $@
$(ARPACK_OBJ_SOURCE): arpack-ng_$(ARPACK_VER)/configure
$(ARPACK_OBJ_SOURCE): arpack-ng_$(ARPACK_VER)/configure install-openblas
cd arpack-ng_$(ARPACK_VER) && \
./configure --prefix=$(abspath $(USR)) --with-blas="$(LIBBLAS)" --with-lapack="$(LIBLAPACK)" --disable-mpi --enable-shared MPIF77=$(FC)
touch $@
$(ARPACK_OBJ_TARGET): $(OPENBLAS_OBJ_SOURCE) $(ARPACK_OBJ_SOURCE)
$(ARPACK_OBJ_TARGET): $(ARPACK_OBJ_SOURCE)
mkdir -p $(USRLIB)
cd arpack-ng_$(ARPACK_VER) && \
make install MPIF77=$(FC)
Expand Down Expand Up @@ -563,7 +563,7 @@ SUITESPARSE_OBJ_TARGET = $(USRLIB)/libumfpack.$(SHLIB_EXT)
ifeq ($(USE_SYSTEM_SUITESPARSE), 0)
compile-suitesparse: $(SUITESPARSE_OBJ_SOURCE)
else:
compile-suitesparse:
compile-suitesparse: install-openblas
mkdir -p SuiteSparse-$(SUITESPARSE_VER)/lib
cd SuiteSparse-$(SUITESPARSE_VER)/lib && \
rm -f *.a && \
Expand Down

0 comments on commit 735cc6c

Please sign in to comment.