| 1 |
# ASCEND Solver Makefile |
| 2 |
# Ben Allan |
| 3 |
# January 4, 1994 |
| 4 |
|
| 5 |
|
| 6 |
SHELL = /bin/sh |
| 7 |
builddir = .. |
| 8 |
srcdir = @fullpathsrcdir@/../generic/integrator |
| 9 |
VPATH := @fullpathsrcdir@/../generic/integrator |
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
# The next variables are the primary executables and/or libraries that |
| 14 |
# this makefile is responsible for, and the default target of this |
| 15 |
# makefile. |
| 16 |
|
| 17 |
EXECUTABLE = |
| 18 |
|
| 19 |
LIBRARY = libascintegrator.a |
| 20 |
|
| 21 |
|
| 22 |
default: $(LIBRARY) |
| 23 |
|
| 24 |
|
| 25 |
|
| 26 |
# Defines and Includes that are specific to this directory |
| 27 |
|
| 28 |
DIR_SPECIFIC_DEFS = $(SOLVER_DEFS) |
| 29 |
DIR_SPECIFIC_INCS = |
| 30 |
|
| 31 |
|
| 32 |
|
| 33 |
# The next variables list the source files (EXEC_SCRS) to compile |
| 34 |
# into the object files (EXEC_OBJS) that are linked with the |
| 35 |
# library files (EXEC_LIBS) to make EXECUTABLE |
| 36 |
|
| 37 |
EXEC_SRCS = |
| 38 |
|
| 39 |
EXEC_OBJS = |
| 40 |
|
| 41 |
EXEC_LIBS = |
| 42 |
|
| 43 |
# The next variables list the source files (LIB_SCRS) to compile |
| 44 |
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
| 45 |
|
| 46 |
LIB_OBJS= \ |
| 47 |
integrator.o lsode.o samplelist.o aww.o |
| 48 |
|
| 49 |
|
| 50 |
LIB_SRCS = $(LIB_OBJS:%.c=%.o) |
| 51 |
|
| 52 |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
| 53 |
# |
| 54 |
include $(builddir)/ConfigAscend |
| 55 |
include $(builddir)/Makefile.Rules |
| 56 |
|
| 57 |
|
| 58 |
|
| 59 |
# debugging for mtx (typically defined in mtx.c) |
| 60 |
# |
| 61 |
#MTX_DEBUG = |
| 62 |
# |
| 63 |
# debugging for minos (typically defined in slv1.c) |
| 64 |
# |
| 65 |
#MINOS_DEBUG = |
| 66 |
|
| 67 |
|
| 68 |
|
| 69 |
# DO NOT DELETE THIS LINE -- g++dep uses it. |
| 70 |
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
| 71 |
|
| 72 |
|
| 73 |
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |