smesh/src/StdMeshers_I/Makefile.in

101 lines
3.1 KiB
Makefile
Raw Normal View History

2004-06-18 14:34:31 +06:00
# SMESH StdMeshers_I : idl implementation based on 'StdMeshersPlugin' unit's classes
#
# Copyright (C) 2003 CEA
#
# 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.
#
# 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.
#
# 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
#
# See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
#
#
#
# File : Makefile.in
# Author : Julia DOROVSKIKH
# Module : SMESH
# $Header$
top_srcdir=@top_srcdir@
top_builddir=../..
srcdir=@srcdir@
VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl
@COMMENCE@
# EXPORT_PYSCRIPTS = smeshpy.py SMESH_test.py
# header files
EXPORT_HEADERS = \
StdMeshers_LocalLength_i.hxx \
StdMeshers_StartEndLength_i.hxx \
StdMeshers_Arithmetic1D_i.hxx \
StdMeshers_NumberOfSegments_i.hxx \
StdMeshers_Deflection1D_i.hxx \
StdMeshers_Propagation_i.hxx \
StdMeshers_LengthFromEdges_i.hxx \
StdMeshers_MaxElementArea_i.hxx \
StdMeshers_MaxElementVolume_i.hxx \
StdMeshers_NotConformAllowed_i.hxx \
StdMeshers_Regular_1D_i.hxx \
StdMeshers_Quadrangle_2D_i.hxx \
StdMeshers_MEFISTO_2D_i.hxx \
StdMeshers_Hexa_3D_i.hxx \
StdMeshers_AutomaticLength_i.hxx
2004-06-18 14:34:31 +06:00
# Libraries targets
LIB= libStdMeshersEngine.la
LIB_SRC = \
StdMeshers_i.cxx \
StdMeshers_LocalLength_i.cxx \
2004-12-01 15:48:31 +05:00
StdMeshers_StartEndLength_i.cxx \
StdMeshers_Arithmetic1D_i.cxx \
StdMeshers_NumberOfSegments_i.cxx \
StdMeshers_Deflection1D_i.cxx \
StdMeshers_Propagation_i.cxx \
2004-06-18 14:34:31 +06:00
StdMeshers_LengthFromEdges_i.cxx \
StdMeshers_MaxElementArea_i.cxx \
StdMeshers_MaxElementVolume_i.cxx \
StdMeshers_NotConformAllowed_i.cxx \
StdMeshers_Regular_1D_i.cxx \
StdMeshers_Quadrangle_2D_i.cxx \
StdMeshers_MEFISTO_2D_i.cxx \
StdMeshers_Hexa_3D_i.cxx \
StdMeshers_AutomaticLength_i.cxx
2004-06-18 14:34:31 +06:00
LIB_SERVER_IDL = SMESH_BasicHypothesis.idl
LIB_CLIENT_IDL = \
SALOMEDS.idl SALOME_Exception.idl \
2004-12-01 15:48:31 +05:00
GEOM_Gen.idl MED.idl SALOMEDS_Attributes.idl \
SMESH_Gen.idl SMESH_Hypothesis.idl SMESH_Group.idl \
SALOME_Comm.idl
2004-06-18 14:34:31 +06:00
# Executables targets
BIN =
BIN_SRC =
# additionnal information to compil and link file
CPPFLAGS+= $(OCC_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome \
-I${GEOM_ROOT_DIR}/include/salome $(BOOST_CPPFLAGS)
CXXFLAGS+= $(OCC_CXXFLAGS) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome -I${GEOM_ROOT_DIR}/include/salome
#IDLCXXFLAGS+= -Wbtp
#LDFLAGS+= $(HDF5_LIBS) -lStdMeshers -lSMESHEngine -lSalomeLifeCycleCORBA -L${KERNEL_ROOT_DIR}/lib/salome -L${GEOM_ROOT_DIR}/lib/salome -lSalomeGenericObj
LDFLAGS+= $(HDF5_LIBS) -lStdMeshers -lSMESHEngine -L${KERNEL_ROOT_DIR}/lib/salome
@CONCLUDE@