# ASCEND LINPACK FORTRAN LIBRARY Makefile # Ben Allan # Sept 1, 1994 # $Date: 1997/09/12 18:05:02 $ # $Revision: 1.7 $ # $Author: mthomas $ # $Source: /afs/cs.cmu.edu/project/ascend/Repository/linpack/Makefile.in,v $ # # This file builds the libpack routines common to minos, # lsode, and other F77 codes connected to ASCEND. # # If you have a linpack library (liblpak.a) tuned to your hardware, use it # instead; to do that, set the LPAKLIB variable in ConfigAscend to point # that library's location (e.g., /usr/lib/liblpak.a) # # If you add files to these targets, please update the README.FORTRAN # in the ascend4/config directory # SHELL = /bin/sh builddir = ../ascend4 srcdir = @srcdir@ VPATH = @srcdir@ # The next variables are the primary executables and/or libraries that # this makefile is responsible for, and the default target of this # makefile. EXECUTABLE = LIBRARY = libasclpak.a default: $(LIBRARY) # Defines and Includes that are specific to this directory DIR_SPECIFIC_DEFS = DIR_SPECIFIC_INCS = # The next variables list the source files (EXEC_SCRS) to compile # into the object files (EXEC_OBJS) that are linked with the # library files (EXEC_LIBS) to make EXECUTABLE EXEC_SRCS = EXEC_OBJS = EXEC_LIBS = # The next variables list the source files (LIB_SCRS) to compile # into the object files (LIB_OBJS) that are combined to make LIBRARY LIB_SRCS = \ d1mach.c dgbfa.f dgbsl.f dgefa.f dgesl.f LIB_OBJS = \ d1mach.o dgbfa.o dgbsl.o dgefa.o dgesl.o # The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) # include $(builddir)/ConfigAscend include $(builddir)/Makefile.Rules # DO NOT DELETE THIS LINE -- g++dep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY