1 |
aw0a |
1 |
# ASCEND Solver Makefile |
2 |
|
|
# Ben Allan |
3 |
|
|
# January 4, 1994 |
4 |
|
|
# $Revision: 1.26 $ |
5 |
|
|
# $Date: 1997/07/29 17:34:29 $ |
6 |
|
|
# $Author: mthomas $ |
7 |
|
|
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/ascend4/solver/Makefile.in,v $ |
8 |
|
|
# |
9 |
|
|
|
10 |
|
|
|
11 |
|
|
SHELL = /bin/sh |
12 |
aw0a |
32 |
builddir = .. |
13 |
|
|
srcdir = @srcdir@/../generic |
14 |
|
|
VPATH = @srcdir@/../generic |
15 |
aw0a |
1 |
|
16 |
|
|
|
17 |
|
|
|
18 |
|
|
# The next variables are the primary executables and/or libraries that |
19 |
|
|
# this makefile is responsible for, and the default target of this |
20 |
|
|
# makefile. |
21 |
|
|
|
22 |
|
|
EXECUTABLE = |
23 |
|
|
|
24 |
|
|
LIBRARY = libsolver.a |
25 |
|
|
|
26 |
|
|
|
27 |
|
|
default: $(LIBRARY) |
28 |
|
|
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
# Defines and Includes that are specific to this directory |
32 |
|
|
|
33 |
|
|
DIR_SPECIFIC_DEFS = $(SOLVER_DEFS) |
34 |
|
|
DIR_SPECIFIC_INCS = |
35 |
|
|
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
# The next variables list the source files (EXEC_SCRS) to compile |
39 |
|
|
# into the object files (EXEC_OBJS) that are linked with the |
40 |
|
|
# library files (EXEC_LIBS) to make EXECUTABLE |
41 |
|
|
|
42 |
|
|
EXEC_SRCS = |
43 |
|
|
|
44 |
|
|
EXEC_OBJS = |
45 |
|
|
|
46 |
|
|
EXEC_LIBS = |
47 |
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
|
|
# The next variables list the source files (LIB_SCRS) to compile |
51 |
|
|
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
52 |
|
|
|
53 |
|
|
LIB_SRCS = \ |
54 |
|
|
analyze.c bnd.c bndman.c calc.c cond_config.c \ |
55 |
|
|
conditional.c conopt.c discrete.c extrel.c linsol.c \ |
56 |
|
|
linsolqr.c linutils.c logrel.c logrelman.c model_reorder.c \ |
57 |
|
|
mps.c mtx_basic.c mtx_linal.c mtx_perms.c mtx_query.c \ |
58 |
|
|
mtx_reorder.c mtx_use_only.c rel.c relman.c rootfind.c \ |
59 |
|
|
slv.c slv0.c slv1.c slv2.c slv3.c slv6.c slv7.c \ |
60 |
|
|
slv8.c slv9.c slv9a.c slvDOF.c slv_common.c \ |
61 |
|
|
slv_interface.c slv_stdcalls.c system.c var.c |
62 |
|
|
|
63 |
|
|
LIB_OBJS = \ |
64 |
|
|
analyze.o bnd.o bndman.o calc.o cond_config.o \ |
65 |
|
|
conditional.o conopt.o discrete.o linsol.o \ |
66 |
|
|
linsolqr.o linutils.o logrel.o logrelman.o model_reorder.o \ |
67 |
|
|
mps.o mtx_basic.o mtx_linal.o mtx_perms.o mtx_query.o \ |
68 |
|
|
mtx_reorder.o mtx_use_only.o rel.o relman.o rootfind.o \ |
69 |
|
|
slv.o slv0.o slv1.o slv2.o slv3.o slv6.o slv7.o \ |
70 |
|
|
slv8.o slv9.o slv9a.o slvDOF.o slv_common.o \ |
71 |
|
|
slv_interface.o slv_stdcalls.o system.o var.o |
72 |
|
|
|
73 |
|
|
|
74 |
|
|
|
75 |
|
|
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
76 |
|
|
# |
77 |
|
|
include $(builddir)/ConfigAscend |
78 |
|
|
include $(builddir)/Makefile.Rules |
79 |
|
|
|
80 |
|
|
|
81 |
|
|
|
82 |
|
|
# debugging for mtx (typically defined in mtx.c) |
83 |
|
|
# |
84 |
|
|
#MTX_DEBUG = |
85 |
|
|
# |
86 |
|
|
# debugging for minos (typically defined in slv1.c) |
87 |
|
|
# |
88 |
|
|
#MINOS_DEBUG = |
89 |
|
|
|
90 |
|
|
|
91 |
|
|
|
92 |
|
|
# DO NOT DELETE THIS LINE -- g++dep uses it. |
93 |
|
|
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
94 |
|
|
|
95 |
|
|
|
96 |
|
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |