-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.am
91 lines (87 loc) · 2.35 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
## Process this file with automake to produce Makefile.in
##
## Copyright (C) 1995 The GeoFramework Consortium
##
## This file is part of Ellipsis3D.
##
## Ellipsis3D is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License, version 2,
## as published by the Free Software Foundation.
##
## Ellipsis3D is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## Author:
## Louis Moresi <[email protected]>
##
# $Id$
bin_PROGRAMS = ellipsis3d
ellipsis3d_SOURCES = \
Advection_diffusion.c \
advection_global_variables.h \
Allocation_of_memory.c \
Averages_and_integrals.c \
Boundary_conditions_enforcement.c \
Boundary_conditions_parsing.c \
Boundary_conditions_shapes.c \
Boundary_conditions_skew.c \
Boundary_conditions_temperature.c \
Boundary_conditions_velocity.c \
chemtrans_global_definitions.h \
Chem_transport.c \
Construct_coefficient_matrices.c \
Construct_mesh_arrays.c \
convection_global_variables.h \
Element_calculations.c \
element_definitions.h \
Ellipsis3D.c \
Fourier_transforms.c \
Full_multigrid_non_linear.c \
function_prototypes.h \
Gauss_seidel.c \
Geometry_axi.c \
Geometry_cartesian.c \
Geometry_spherical.c \
Global_assembly_operations_nodes.c \
Global_assembly_operations_particles.c \
global_defs.h \
Grain_growth.c \
Initial_conditions.c \
Instructions.c \
Jacobians.c \
Material_properties_matrices.c \
Matrix_operations_dot_prod.c \
Matrix_operations_multipy.c \
MG_matrix_solver.c \
MG_solver_mesh_operations.c \
MG_solver_setup.c \
Nodal_mesh.c \
Output.c \
Pan_problem_misc_functions.c \
Parsing.c \
PPM_output.c \
Process_buoyancy.c \
Process_velocity.c \
Profiling.c \
Shape_functions.c \
Size_does_matter.c \
temperature_descriptions.h \
Time_dependence.c \
Topo_gravity.c \
Tracer_advection.c \
Tracer_build_matrices.c \
tracer_global_definitions.h \
tracer_global_variables.h \
Tracer_initialization.c \
Tracer_integration.c \
Tracer_mesh_interactions.c \
Tracer_phase_changes.c \
Tracer_read.c \
Tracer_tracer_interactions.c \
Uzawa_constraint_iteration.c \
viscosity_descriptions.h \
Viscosity_structures.c \
Zeros_of_J0_and_J1.h
## end of Makefile.am