| 1 |
aw0a |
1 |
# ASCEND BLAS FORTRAN LIBRARY Makefile |
| 2 |
|
|
# Ben Allan |
| 3 |
|
|
# Sept 1, 1994 |
| 4 |
|
|
# $Date: 1998/04/25 18:22:44 $ |
| 5 |
|
|
# $Revision: 1.7 $ |
| 6 |
|
|
# $Author: ballan $ |
| 7 |
|
|
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/blas/Makefile.in,v $ |
| 8 |
|
|
# |
| 9 |
|
|
|
| 10 |
|
|
# This file builds the libraries of blas common to minos, |
| 11 |
|
|
# lsode, and other F77 codes connected to ASCEND. |
| 12 |
|
|
# |
| 13 |
|
|
# If you have a blas library (libblas.a) tuned to your hardware, use it |
| 14 |
|
|
# instead; to do that, set the BLASLIB variable in ConfigAscend to point |
| 15 |
|
|
# that libraries location (e.g., /usr/lib/libblas.a) |
| 16 |
|
|
# |
| 17 |
|
|
# If you add files to these targets, please update the README.FORTRAN |
| 18 |
|
|
# in the ascend4/config directory |
| 19 |
|
|
# |
| 20 |
|
|
|
| 21 |
|
|
|
| 22 |
|
|
SHELL = /bin/sh |
| 23 |
|
|
builddir = ../ascend4 |
| 24 |
|
|
srcdir = @srcdir@ |
| 25 |
|
|
VPATH = @srcdir@ |
| 26 |
|
|
|
| 27 |
|
|
|
| 28 |
|
|
|
| 29 |
|
|
# The next variables are the primary executables and/or libraries that |
| 30 |
|
|
# this makefile is responsible for, and the default target of this |
| 31 |
|
|
# makefile. |
| 32 |
|
|
|
| 33 |
|
|
EXECUTABLE = |
| 34 |
|
|
|
| 35 |
|
|
LIBRARY = libascblas.a |
| 36 |
|
|
|
| 37 |
|
|
|
| 38 |
|
|
default: $(LIBRARY) |
| 39 |
|
|
|
| 40 |
|
|
|
| 41 |
|
|
|
| 42 |
|
|
# Defines and Includes that are specific to this directory |
| 43 |
|
|
|
| 44 |
|
|
DIR_SPECIFIC_DEFS = |
| 45 |
|
|
DIR_SPECIFIC_INCS = |
| 46 |
|
|
|
| 47 |
|
|
|
| 48 |
|
|
|
| 49 |
|
|
# The next variables list the source files (EXEC_SCRS) to compile |
| 50 |
|
|
# into the object files (EXEC_OBJS) that are linked with the |
| 51 |
|
|
# library files (EXEC_LIBS) to make EXECUTABLE |
| 52 |
|
|
|
| 53 |
|
|
EXEC_SRCS = |
| 54 |
|
|
|
| 55 |
|
|
EXEC_OBJS = |
| 56 |
|
|
|
| 57 |
|
|
EXEC_LIBS = |
| 58 |
|
|
|
| 59 |
|
|
|
| 60 |
|
|
|
| 61 |
|
|
# The next variables list the source files (LIB_SCRS) to compile |
| 62 |
|
|
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
| 63 |
|
|
|
| 64 |
|
|
LIB_SRCS = \ |
| 65 |
|
|
dasum.f daxpy.f dcopy.f ddot.f dnrm2.f dscal.f idamax.f \ |
| 66 |
|
|
dtrsv.f dswap.f dgemv.f dtrsm.f xerbla.f lsame.f dgemm.f |
| 67 |
|
|
|
| 68 |
|
|
LIB_OBJS = \ |
| 69 |
|
|
dasum.o daxpy.o dcopy.o ddot.o dnrm2.o dscal.o idamax.o \ |
| 70 |
|
|
dtrsv.o dswap.o dgemv.o dtrsm.o xerbla.o lsame.o dgemm.o |
| 71 |
|
|
|
| 72 |
|
|
|
| 73 |
|
|
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
| 74 |
|
|
# |
| 75 |
|
|
include $(builddir)/ConfigAscend |
| 76 |
|
|
include $(builddir)/Makefile.Rules |
| 77 |
|
|
|
| 78 |
|
|
|
| 79 |
|
|
|
| 80 |
|
|
# DO NOT DELETE THIS LINE -- g++dep uses it. |
| 81 |
|
|
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
| 82 |
|
|
|
| 83 |
|
|
|
| 84 |
|
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |