smesh/src/SMESH_I/Makefile.am

137 lines
3.4 KiB
Makefile
Raw Normal View History

2009-02-17 10:27:49 +05:00
# Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
#
# Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
2003-07-10 19:35:03 +06:00
#
2009-02-17 10:27:49 +05:00
# This library 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
# Lesser General Public License for more details.
2003-07-10 19:35:03 +06:00
#
2009-02-17 10:27:49 +05:00
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2003-07-10 19:35:03 +06:00
#
2009-02-17 10:27:49 +05:00
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2003-07-10 19:35:03 +06:00
#
2009-02-17 10:27:49 +05:00
# SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2003-07-10 19:35:03 +06:00
# File : Makefile.in
# Author : Paul RASCLE, EDF
# Modified by : Alexander BORODIN (OCN) - autotools usage
2003-07-10 19:35:03 +06:00
# Module : SMESH
2009-02-17 10:27:49 +05:00
#
include $(top_srcdir)/adm_local/unix/make_common_starter.am
2003-07-10 19:35:03 +06:00
# header files
salomeinclude_HEADERS = \
2004-06-18 14:34:31 +06:00
SMESH_Gen_i.hxx \
SMESH_Algo_i.hxx \
SMESH_0D_Algo_i.hxx \
2004-06-18 14:34:31 +06:00
SMESH_1D_Algo_i.hxx \
SMESH_2D_Algo_i.hxx \
SMESH_3D_Algo_i.hxx \
SMESH_subMesh_i.hxx \
SMESH_Mesh_i.hxx \
2004-12-17 16:07:35 +05:00
SMESH_Hypothesis_i.hxx \
SMESH_PythonDump.hxx \
2009-02-17 10:27:49 +05:00
SMESH_Group_i.hxx \
SMESH_MEDMesh_i.hxx \
SMESH_Filter_i.hxx \
SMESH_MeshEditor_i.hxx \
SMESH_MEDFamily_i.hxx \
SMESH_MEDSupport_i.hxx \
SMESH_Pattern_i.hxx \
SMESH_2smeshpy.hxx \
SMESH_NoteBook.hxx \
2005-03-23 10:56:25 +05:00
SMESH.hxx
2004-06-18 14:34:31 +06:00
# Scripts to be installed.
dist_salomescript_DATA= \
smeshpy.py
2003-05-19 19:54:48 +06:00
# Libraries targets
lib_LTLIBRARIES = libSMESHEngine.la
2003-05-19 19:54:48 +06:00
dist_libSMESHEngine_la_SOURCES = \
2004-06-18 14:34:31 +06:00
SMESH_Gen_i.cxx \
2004-12-01 15:48:31 +05:00
SMESH_Gen_i_1.cxx \
SMESH_DumpPython.cxx \
2004-06-18 14:34:31 +06:00
SMESH_Mesh_i.cxx \
SMESH_MEDMesh_i.cxx \
SMESH_MEDFamily_i.cxx \
2004-06-18 14:34:31 +06:00
SMESH_MEDSupport_i.cxx \
SMESH_subMesh_i.cxx \
SMESH_MeshEditor_i.cxx \
SMESH_Hypothesis_i.cxx \
SMESH_Algo_i.cxx \
SMESH_0D_Algo_i.cxx \
SMESH_1D_Algo_i.cxx \
SMESH_2D_Algo_i.cxx \
SMESH_3D_Algo_i.cxx \
2004-06-18 14:34:31 +06:00
SMESH_Filter_i.cxx \
2004-12-01 15:48:31 +05:00
SMESH_Group_i.cxx \
SMESH_Pattern_i.cxx \
2009-02-17 10:27:49 +05:00
SMESH_2smeshpy.cxx \
SMESH_NoteBook.cxx
2003-05-19 19:54:48 +06:00
# Executables targets
bin_PROGRAMS = SMESHEngine
dist_SMESHEngine_SOURCES = \
SMESHEngine.cxx
2003-05-19 19:54:48 +06:00
# additionnal information to compil and link file
libSMESHEngine_la_CPPFLAGS = \
$(CORBA_CXXFLAGS) \
$(CORBA_INCLUDES) \
$(CAS_CPPFLAGS) \
@HDF5_INCLUDES@ \
$(BOOST_CPPFLAGS) \
$(KERNEL_CXXFLAGS) \
$(GUI_CXXFLAGS) \
$(MED_CXXFLAGS) \
$(GEOM_CXXFLAGS) \
-I$(srcdir)/../Controls \
-I$(srcdir)/../SMDS \
-I$(srcdir)/../SMESHDS \
-I$(srcdir)/../Driver \
-I$(srcdir)/../DriverMED \
-I$(srcdir)/../SMESH \
-I$(top_builddir)/idl \
-I$(top_builddir)/salome_adm/unix
libSMESHEngine_la_LDFLAGS = \
../../idl/libSalomeIDLSMESH.la \
../SMESH/libSMESHimpl.la \
../Controls/libSMESHControls.la \
$(KERNEL_LDFLAGS) \
-lSalomeContainer \
-lSalomeNS \
-lRegistry \
-lSalomeHDFPersist \
-lSalomeLifeCycleCORBA \
-lTOOLSDS \
-lSalomeGenericObj \
$(MED_LDFLAGS) \
-lMEDWrapper_V2_2 \
2009-02-17 10:27:49 +05:00
-lSalomeIDLMED \
$(CAS_LDPATH) \
-lTKCDF \
-lTKBO \
-lTKShHealing \
2009-02-17 10:27:49 +05:00
$(GEOM_LDFLAGS) \
-lGEOMClient
SMESHEngine_CPPFLAGS = \
$(libSMESHEngine_la_CPPFLAGS)
SMESHEngine_LDADD = \
$(libSMESHEngine_la_LDFLAGS)