1 |
aw0a |
1 |
# ASCEND LINPACK FORTRAN LIBRARY Makefile |
2 |
|
|
# Ben Allan |
3 |
|
|
# Sept 1, 1994 |
4 |
|
|
# $Date: 1997/09/12 18:05:02 $ |
5 |
|
|
# $Revision: 1.7 $ |
6 |
|
|
# $Author: mthomas $ |
7 |
|
|
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/linpack/Makefile.in,v $ |
8 |
|
|
# |
9 |
|
|
|
10 |
|
|
# This file builds the libpack routines common to minos, |
11 |
|
|
# lsode, and other F77 codes connected to ASCEND. |
12 |
|
|
# |
13 |
|
|
# If you have a linpack library (liblpak.a) tuned to your hardware, use it |
14 |
|
|
# instead; to do that, set the LPAKLIB variable in ConfigAscend to point |
15 |
|
|
# that library's location (e.g., /usr/lib/liblpak.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 = libasclpak.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 |
|
|
d1mach.c dgbfa.f dgbsl.f dgefa.f dgesl.f |
66 |
|
|
|
67 |
|
|
LIB_OBJS = \ |
68 |
|
|
d1mach.o dgbfa.o dgbsl.o dgefa.o dgesl.o |
69 |
|
|
|
70 |
|
|
|
71 |
|
|
|
72 |
|
|
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
73 |
|
|
# |
74 |
|
|
include $(builddir)/ConfigAscend |
75 |
|
|
include $(builddir)/Makefile.Rules |
76 |
|
|
|
77 |
|
|
|
78 |
|
|
|
79 |
|
|
# DO NOT DELETE THIS LINE -- g++dep uses it. |
80 |
|
|
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
81 |
|
|
|
82 |
|
|
|
83 |
|
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |