# ASCEND Solver Makefile # Ben Allan # January 4, 1994 # $Revision: 1.26 $ # $Date: 1997/07/29 17:34:29 $ # $Author: mthomas $ # $Source: /afs/cs.cmu.edu/project/ascend/Repository/ascend4/solver/Makefile.in,v $ # SHELL = /bin/sh builddir = .. 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 = libsolver.a default: $(LIBRARY) # Defines and Includes that are specific to this directory DIR_SPECIFIC_DEFS = $(SOLVER_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 = \ analyze.c bnd.c bndman.c calc.c cond_config.c \ conditional.c conopt.c discrete.c extrel.c linsol.c \ linsolqr.c linutils.c logrel.c logrelman.c model_reorder.c \ mps.c mtx_basic.c mtx_linal.c mtx_perms.c mtx_query.c \ mtx_reorder.c mtx_use_only.c rel.c relman.c rootfind.c \ slv.c slv0.c slv1.c slv2.c slv3.c slv6.c slv7.c \ slv8.c slv9.c slv9a.c slvDOF.c slv_common.c \ slv_interface.c slv_stdcalls.c system.c var.c LIB_OBJS = \ analyze.o bnd.o bndman.o calc.o cond_config.o \ conditional.o conopt.o discrete.o linsol.o \ linsolqr.o linutils.o logrel.o logrelman.o model_reorder.o \ mps.o mtx_basic.o mtx_linal.o mtx_perms.o mtx_query.o \ mtx_reorder.o mtx_use_only.o rel.o relman.o rootfind.o \ slv.o slv0.o slv1.o slv2.o slv3.o slv6.o slv7.o \ slv8.o slv9.o slv9a.o slvDOF.o slv_common.o \ slv_interface.o slv_stdcalls.o system.o var.o # The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) # include $(builddir)/ConfigAscend include $(builddir)/Makefile.Rules # debugging for mtx (typically defined in mtx.c) # #MTX_DEBUG = # # debugging for minos (typically defined in slv1.c) # #MINOS_DEBUG = # 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