~ubuntu-branches/ubuntu/precise/code-saturne/precise

« back to all changes in this revision

Viewing changes to src/gui/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2011-11-01 17:43:32 UTC
  • mto: (6.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20111101174332-tl4vk45no0x3emc3
Tags: upstream-2.1.0
ImportĀ upstreamĀ versionĀ 2.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
#-------------------------------------------------------------------------------
 
4
 
 
5
# This file is part of Code_Saturne, a general-purpose CFD tool.
 
6
#
 
7
# Copyright (C) 1998-2011 EDF S.A.
 
8
#
 
9
# This program is free software; you can redistribute it and/or modify it under
 
10
# the terms of the GNU General Public License as published by the Free Software
 
11
# Foundation; either version 2 of the License, or (at your option) any later
 
12
# version.
 
13
#
 
14
# This program is distributed in the hope that it will be useful, but WITHOUT
 
15
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
16
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
17
# details.
 
18
#
 
19
# You should have received a copy of the GNU General Public License along with
 
20
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
 
21
# Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
22
 
 
23
#-------------------------------------------------------------------------------
 
24
 
 
25
# Main part
 
26
 
 
27
AM_CPPFLAGS = \
 
28
-I$(top_srcdir)/src/bft \
 
29
-I$(top_srcdir)/src/fvm \
 
30
-I$(top_srcdir)/src/mei \
 
31
-I$(top_srcdir)/src/base \
 
32
-I$(top_srcdir)/src/mesh \
 
33
$(MPI_CPPFLAGS) $(LIBXML2_CPPFLAGS)
 
34
 
 
35
AM_CFLAGS = $(CFLAGS_DBG) $(CFLAGS_OPT)
 
36
 
 
37
AM_LDFLAGS =
 
38
 
 
39
# Public header files (to be installed)
 
40
 
 
41
pkginclude_HEADERS = \
 
42
cs_gui.h \
 
43
cs_gui_boundary_conditions.h \
 
44
cs_gui_conjugate_heat_transfer.h \
 
45
cs_gui_mesh.h \
 
46
cs_gui_mobile_mesh.h \
 
47
cs_gui_output.h \
 
48
cs_gui_particles.h \
 
49
cs_gui_radiative_transfer.h \
 
50
cs_gui_specific_physics.h \
 
51
cs_gui_util.h \
 
52
cs_gui_variables.h
 
53
 
 
54
# Library source files
 
55
 
 
56
noinst_LTLIBRARIES = libcsgui.la
 
57
 
 
58
###
 
59
 
 
60
libcsgui_la_SOURCES = \
 
61
cs_gui.c \
 
62
cs_gui_boundary_conditions.c \
 
63
cs_gui_conjugate_heat_transfer.c \
 
64
cs_gui_mesh.c \
 
65
cs_gui_mobile_mesh.c \
 
66
cs_gui_output.c \
 
67
cs_gui_particles.c \
 
68
cs_gui_radiative_transfer.c \
 
69
cs_gui_specific_physics.c \
 
70
cs_gui_util.c