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