24 |
|
|
25 |
default: $(LIBRARY) $(EXECUTABLE) |
default: $(LIBRARY) $(EXECUTABLE) |
26 |
|
|
27 |
|
main.o:main.c |
28 |
|
|
29 |
# Defines and Includes that are specific to this directory |
# Defines and Includes that are specific to this directory |
30 |
|
|
38 |
# into the object files (EXEC_OBJS) that are linked with the |
# into the object files (EXEC_OBJS) that are linked with the |
39 |
# library files (EXEC_LIBS) to make EXECUTABLE |
# library files (EXEC_LIBS) to make EXECUTABLE |
40 |
|
|
41 |
EXEC_SRCS = Driver.c main.c |
EXEC_OBJS = main.o |
42 |
|
EXEC_SRCS = $(EXEC_OBJS:%.o=%.c) |
|
EXEC_OBJS = Driver.o main.o |
|
43 |
|
|
44 |
EXEC_LIBS = $(ASC_LIBS) $(FOR_LIBS) $(TK_LIBS) $(TKTABLE_LIB) $(X11_LIBS) \ |
EXEC_LIBS = $(ASC_LIBS) $(FOR_LIBS) $(TK_LIBS) $(TKTABLE_LIB) $(X11_LIBS) \ |
45 |
$(MATH_LIBS) $(DEBUG_LIBS) |
$(MATH_LIBS) $(DEBUG_LIBS) |
52 |
LIB_OBJS = \ |
LIB_OBJS = \ |
53 |
AscBitmaps.o AscPrintTcl.o BrowLogRel_io.o BrowWhen_io.o \ |
AscBitmaps.o AscPrintTcl.o BrowLogRel_io.o BrowWhen_io.o \ |
54 |
BrowserMethod.o BrowserProc.o BrowserQuery.o BrowserRel_io.o \ |
BrowserMethod.o BrowserProc.o BrowserQuery.o BrowserRel_io.o \ |
55 |
Commands.o DebugProc.o DisplayProc.o \ |
Commands.o DebugProc.o DisplayProc.o Driver.o \ |
56 |
EnvVarProc.o HelpProc.o Integrators.o \ |
EnvVarProc.o HelpProc.o Integrators.o \ |
57 |
LibraryProc.o Lsode.o MtxProc.o ProbeProc.o Qlfdid.o \ |
LibraryProc.o Lsode.o MtxProc.o ProbeProc.o Qlfdid.o \ |
58 |
ScriptProc.o Sensitivity.o SimsProc.o SlvProc.o \ |
ScriptProc.o Sensitivity.o SimsProc.o SlvProc.o \ |
61 |
|
|
62 |
LIB_SRCS = $(LIB_OBJS:%.o=%.c) |
LIB_SRCS = $(LIB_OBJS:%.o=%.c) |
63 |
|
|
|
|
|
64 |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
65 |
# |
# |
66 |
#AWW $builddir is currently pointing to: base/generic |
#AWW $builddir is currently pointing to: base/generic |
89 |
|
|
90 |
# Force an update of Driver.o so we update the value |
# Force an update of Driver.o so we update the value |
91 |
# of TIMESTAMP in the ascend binary |
# of TIMESTAMP in the ascend binary |
92 |
# -- disabled -- Dec 1 2005 -- johnpye |
# -- disabled -- Dec 1 2005 -- johnpye (dependencies should 'just work' for this) |
93 |
#Driver.o: Driver.date |
#Driver.o: Driver.date |
94 |
# $(CC) $(CC_SWITCHES) $(HAVE_TKTABLE) $(TIMESTAMP) -c $(srcdir)/Driver.c |
# $(CC) $(CC_SWITCHES) $(HAVE_TKTABLE) $(TIMESTAMP) -c $(srcdir)/Driver.c |
95 |
# $(RM) Driver.date |
# $(RM) Driver.date |