1##-----------------------------------------------------------------------
2##
3##  This file is part of the General Astrodynamics Library
4##
5##  Status:
6##
7##     Make file for the odeint sub-library
8##
9##  Notes:
10##
11##     1) Process this file with automake to produce Makefile.in
12##
13##  This revision:
14##
15##     2008 May 18
16##
17##  Copyright (C) 2008 Paul C. L. Willmott. See notes at end.
18##
19##-----------------------------------------------------------------------
20
21AM_CPPFLAGS= -I$(top_builddir)/test -I$(top_builddir)
22
23noinst_LTLIBRARIES = libgal_odeint_test.la libgal_odeint.la
24
25include_HEADERS = \
26gal_odeint.h\
27gal_rkf.h\
28gal_rkfqs.h\
29gal_rkfs45.h\
30gal_rkfcks45.h\
31gal_rkfs56.h\
32gal_rkfs67.h\
33gal_rkfs78.h
34
35libgal_odeint_la_SOURCES = \
36gal_rkf.c\
37gal_rkfqs.c\
38gal_rkfs45.c\
39gal_rkfcks45.c\
40gal_rkfs56.c\
41gal_rkfs67.c\
42gal_rkfs78.c
43
44noinst_HEADERS = \
45gal_rkfs45_test.h\
46gal_rkfcks45_test.h\
47gal_rkfs56_test.h\
48gal_rkfs67_test.h\
49gal_rkfs78_test.h
50
51libgal_odeint_test_la_SOURCES = \
52gal_rkfs45_test.c\
53gal_rkfcks45_test.c\
54gal_rkfs56_test.c\
55gal_rkfs67_test.c\
56gal_rkfs78_test.c
57
58##-----------------------------------------------------------------------
59##  gal - General Astrodynamics Library
60##  Copyright (C) 2008 Paul C. L. Willmott
61##
62##  This program is free software; you can redistribute it and/or modify
63##  it under the terms of the GNU General Public License as published by
64##  the Free Software Foundation; either version 2 of the License, or
65##  (at your option) any later version.
66##
67##  This program is distributed in the hope that it will be useful,
68##  but WITHOUT ANY WARRANTY; without even the implied warranty of
69##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
70##  GNU General Public License for more details.
71##
72##  You should have received a copy of the GNU General Public License along
73##  with this program; if not, write to the Free Software Foundation, Inc.,
74##  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
75##
76##  Contact:
77##
78##  Paul Willmott
79##  vp9mu@amsat.org
80##-----------------------------------------------------------------------
81