1 |
# ASCEND Integrators Makefile |
2 |
# Ben Allan |
3 |
# August 20, 1994 |
4 |
# $Date: 1997/09/27 20:58:48 $ |
5 |
# $Revision: 1.9 $ |
6 |
# $Author: ballan $ |
7 |
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/lsod/Makefile.in,v $ |
8 |
# |
9 |
|
10 |
|
11 |
SHELL = /bin/sh |
12 |
builddir = .. |
13 |
srcdir = @fullpathsrcdir@/../../lsod |
14 |
VPATH := @fullpathsrcdir@/../../lsod |
15 |
|
16 |
|
17 |
|
18 |
# The next variables are the primary executables and/or libraries that |
19 |
# this makefile is responsible for, and the default target of this |
20 |
# makefile. |
21 |
|
22 |
EXECUTABLE = |
23 |
|
24 |
LIBRARY = libinteg.a |
25 |
|
26 |
|
27 |
default: $(LIBRARY) |
28 |
|
29 |
|
30 |
|
31 |
# Defines and Includes that are specific to this directory |
32 |
|
33 |
DIR_SPECIFIC_DEFS = |
34 |
DIR_SPECIFIC_INCS = |
35 |
|
36 |
|
37 |
|
38 |
# The next variables list the source files (EXEC_SCRS) to compile |
39 |
# into the object files (EXEC_OBJS) that are linked with the |
40 |
# library files (EXEC_LIBS) to make EXECUTABLE |
41 |
|
42 |
EXEC_SRCS = |
43 |
|
44 |
EXEC_OBJS = |
45 |
|
46 |
EXEC_LIBS = |
47 |
|
48 |
|
49 |
|
50 |
# The next variables list the source files (LIB_SCRS) to compile |
51 |
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
52 |
|
53 |
LIB_SRCS = \ |
54 |
lsode.f |
55 |
|
56 |
LIB_OBJS = \ |
57 |
lsode.o |
58 |
|
59 |
|
60 |
|
61 |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
62 |
# |
63 |
include $(builddir)/ConfigAscend |
64 |
include $(builddir)/Makefile.Rules |
65 |
|
66 |
|
67 |
|
68 |
# DO NOT DELETE THIS LINE -- g++dep uses it. |
69 |
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
70 |
|
71 |
|
72 |
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |