# ASCEND Solver Makefile # Ben Allan # January 4, 1994 SHELL = /bin/sh builddir = .. srcdir = @fullpathsrcdir@/../generic/solver VPATH := @fullpathsrcdir@/../generic/solver # 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 = libascsolver.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_OBJS= \ conopt.o mps.o slv3.o slv7.o slv9a.o slvDOF.o \ incidence.o slv2.o slv6.o slv8.o slv9.o slv_interface.o LIB_SRCS = $(LIB_OBJS:%.c=%.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