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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
############################################################################
#
# Program: ScaLAPACK
#
# Module: Makefile
#
# Purpose: Top-level Makefile
#
# Creation date: March 20, 1995
#
# Modified: February 15, 2000
#
# Send bug reports, comments or suggestions to scalapack@cs.utk.edu
#
############################################################################
include SLmake.inc
PRECISIONS = single double complex complex16
############################################################################
#
# The library can be set up to include routines for any combination of the
# four PRECISIONS. First, modify the ARCH, ARCHFLAGS, RANLIB, F77, CC,
# F77FLAGS, CCFLAGS, F77LOADER, CCLOADER, F77LOADFLAGS, CCLOADFLAGS and
# CDEFS definitions in SLmake.inc to match your library archiver, compiler
# and the options to be used.
#
# The command
# make
# without any arguments creates the library of precisions defined by the
# environment variable PRECISIONS as well as the corresponding testing
# executables,
# make lib
# creates only the library,
# make exe
# creates only the testing executables.
# make example
# creates only the example
#
# The name of the library is defined in the file called SLmake.inc and
# is created at this directory level.
#
# To remove the object files after the library and testing executables
# are created, enter
# make clean
#
############################################################################
all: lib exe example
SCALAPACKLIBS=toolslib pblaslib redistlib scalapacklib
$(SCALAPACKLIBS): blacslib
lib: $(SCALAPACKLIBS)
exe: blacsexe pblasexe redistexe scalapackexe
clean: cleanlib cleanexe cleanexample
blacslib:
( cd BLACS; $(MAKE) lib )
pblaslib:
( cd PBLAS/SRC; $(MAKE) $(PRECISIONS) )
redistlib:
( cd REDIST/SRC; $(MAKE) integer $(PRECISIONS) )
scalapacklib:
( cd SRC; $(MAKE) $(PRECISIONS) )
toolslib:
( cd TOOLS; $(MAKE) $(PRECISIONS) )
blacsexe:
( cd BLACS; $(MAKE) tester )
pblasexe:
( cd PBLAS/TESTING; $(MAKE) $(PRECISIONS) )
( cd PBLAS/TIMING; $(MAKE) $(PRECISIONS) )
scalapackexe:
( cd TESTING/LIN; $(MAKE) $(PRECISIONS) )
( cd TESTING/EIG; $(MAKE) $(PRECISIONS) )
redistexe:
( cd REDIST/TESTING; $(MAKE) integer $(PRECISIONS) )
example:
( cd EXAMPLE; $(MAKE) $(PRECISIONS) )
cleanexe:
( cd PBLAS/TESTING; $(MAKE) clean )
( cd PBLAS/TIMING; $(MAKE) clean )
( cd TESTING/LIN; $(MAKE) clean )
( cd TESTING/EIG; $(MAKE) clean )
( cd REDIST/TESTING; $(MAKE) clean )
( cd BLACS/TESTING; $(MAKE) clean )
( cd TESTING; rm -f x* )
cleanlib:
( cd BLACS; $(MAKE) clean )
( cd PBLAS/SRC; $(MAKE) clean )
( cd SRC; $(MAKE) clean )
( cd TOOLS; $(MAKE) clean )
( cd REDIST/SRC; $(MAKE) clean )
( rm -f $(SCALAPACKLIB) )
cleanexample:
( cd EXAMPLE; $(MAKE) clean )
|