1 |
# ASCEND Solver Makefile |
2 |
# Ben Allan |
3 |
# January 4, 1994 |
4 |
|
5 |
|
6 |
SHELL = /bin/sh |
7 |
builddir = .. |
8 |
srcdir = @fullpathsrcdir@/../generic/solver |
9 |
VPATH := @fullpathsrcdir@/../generic/solver |
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 = libascsolver.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 |
|
44 |
|
45 |
# The next variables list the source files (LIB_SCRS) to compile |
46 |
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
47 |
|
48 |
LIB_SRCS = \ |
49 |
analyze.c bnd.c bndman.c calc.c cond_config.c \ |
50 |
conditional.c conopt.c discrete.c extrel.c linsol.c \ |
51 |
linsolqr.c linutils.c logrel.c logrelman.c model_reorder.c \ |
52 |
mps.c mtx_basic.c mtx_linal.c mtx_perms.c mtx_query.c \ |
53 |
mtx_reorder.c mtx_use_only.c rel.c relman.c \ |
54 |
slv.c slv0.c slv1.c slv2.c slv3.c slv6.c slv7.c \ |
55 |
slv8.c slv9.c slv9a.c slvDOF.c slv_common.c \ |
56 |
slv_interface.c slv_stdcalls.c system.c var.c |
57 |
|
58 |
LIB_OBJS = \ |
59 |
analyze.o bnd.o bndman.o calc.o cond_config.o \ |
60 |
conditional.o conopt.o discrete.o linsol.o \ |
61 |
linsolqr.o linutils.o logrel.o logrelman.o model_reorder.o \ |
62 |
mps.o mtx_basic.o mtx_linal.o mtx_perms.o mtx_query.o \ |
63 |
mtx_reorder.o mtx_use_only.o rel.o relman.o \ |
64 |
slv.o slv0.o slv1.o slv2.o slv3.o slv6.o slv7.o \ |
65 |
slv8.o slv9.o slv9a.o slvDOF.o slv_common.o \ |
66 |
slv_interface.o slv_stdcalls.o system.o var.o |
67 |
|
68 |
|
69 |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
70 |
# |
71 |
include $(builddir)/ConfigAscend |
72 |
include $(builddir)/Makefile.Rules |
73 |
|
74 |
|
75 |
|
76 |
# debugging for mtx (typically defined in mtx.c) |
77 |
# |
78 |
#MTX_DEBUG = |
79 |
# |
80 |
# debugging for minos (typically defined in slv1.c) |
81 |
# |
82 |
#MINOS_DEBUG = |
83 |
|
84 |
|
85 |
|
86 |
# DO NOT DELETE THIS LINE -- g++dep uses it. |
87 |
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
88 |
|
89 |
|
90 |
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |