Skip to content

Commit

Permalink
Merge pull request Reference-ScaLAPACK#53 from joseeroman/jose/parall…
Browse files Browse the repository at this point in the history
…el-make

Fix parallel builds with GNU make
  • Loading branch information
langou authored Mar 7, 2022
2 parents 1cad194 + 6e58144 commit 5e38ec4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions BLACS/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
all : lib tester

clean:
( cd TESTING ; make clean )
( cd SRC ; make clean )
( cd TESTING ; $(MAKE) clean )
( cd SRC ; $(MAKE) clean )

tester :
( cd TESTING ; make )
( cd TESTING ; $(MAKE) )

lib :
( cd SRC ; make )
( cd SRC ; $(MAKE) )
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ PRECISIONS = single double complex complex16

all: lib exe example

lib: blacslib toolslib pblaslib redistlib scalapacklib
SCALAPACKLIBS=toolslib pblaslib redistlib scalapacklib

$(SCALAPACKLIBS): blacslib
lib: $(SCALAPACKLIBS)

exe: blacsexe pblasexe redistexe scalapackexe

Expand Down

0 comments on commit 5e38ec4

Please sign in to comment.