~ubuntu-branches/ubuntu/maverick/openturns/maverick

« back to all changes in this revision

Viewing changes to lib/src/Base/Func/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2008-11-18 06:32:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20081118063222-pa0qncclrerrqkg2
Tags: 0.12.2-1
* New upstream release
* Bug fix: "New upstream release available (0.12.2)", thanks to Jerome
  Robert (Closes: #506005).
* Applied patch by J. Robert.
* debian/control: build-depends on libxml2

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20
20
#
21
21
#  @author: $LastChangedBy: dutka $
22
 
#  @date:   $LastChangedDate: 2008-06-04 18:43:31 +0200 (mer, 04 jun 2008) $
23
 
#  Id:      $Id: Makefile.am 842 2008-06-04 16:43:31Z dutka $
 
22
#  @date:   $LastChangedDate: 2008-10-29 18:54:45 +0100 (mer 29 oct 2008) $
 
23
#  Id:      $Id: Makefile.am 990 2008-10-29 17:54:45Z dutka $
24
24
#
25
25
include $(top_srcdir)/config/common.am
26
26
 
36
36
otinclude_HEADERS = \
37
37
        Library.hxx \
38
38
        LibraryLoader.hxx \
 
39
        WrapperData.hxx \
 
40
        WrapperFile.hxx \
39
41
        WrapperObject.hxx \
40
42
        NumericalMathFunction.hxx \
41
43
        NumericalMathFunctionImplementation.hxx \
64
66
        ComposedNumericalMathEvaluationImplementation.hxx \
65
67
        ComposedNumericalMathGradientImplementation.hxx \
66
68
        ComposedNumericalMathHessianImplementation.hxx \
67
 
        AnalyticalNumericalMathEvaluationImplementation.hxx
68
 
 
 
69
        AnalyticalNumericalMathEvaluationImplementation.hxx \
 
70
        MethodBoundNumericalMathEvaluationImplementation.hxx
69
71
 
70
72
noinst_LTLIBRARIES    = libOTFunc.la
71
73
libOTFunc_la_LDFLAGS  = -no-undefined
72
 
libOTFunc_la_CXXFLAGS = $(AM_CXXFLAGS) $(QT_CXXFLAGS)
 
74
libOTFunc_la_CXXFLAGS = $(AM_CXXFLAGS)
73
75
libOTFunc_la_SOURCES  = \
74
76
        Library.cxx \
75
77
        LibraryLoader.cxx \
 
78
        WrapperData.cxx \
 
79
        WrapperFile.cxx \
76
80
        WrapperObject.cxx \
77
81
        NumericalMathFunction.cxx \
78
82
        NumericalMathFunctionImplementation.cxx \
104
108
        AnalyticalNumericalMathEvaluationImplementation.cxx
105
109
 
106
110
libOTFunc_la_LIBADD   = $(builddir)/MuParser/libOTMuParser.la
 
111
 
 
112
if WITH_LIBXML2
 
113
AM_CPPFLAGS          += -I$(libxml2_include_path)
 
114
libOTFunc_la_LDFLAGS += -L$(libxml2_lib_path)
 
115
libOTFunc_la_LIBADD  += -l$(libxml2_lib_name)
 
116
otinclude_HEADERS    += \
 
117
        XMLTags.hxx
 
118
endif