2006-05-06 08:54:13 +00:00
|
|
|
# Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS, L3S, LJLL, MENSI
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2006-06-01 11:42:55 +00:00
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2006-05-06 08:54:13 +00:00
|
|
|
#
|
2004-03-26 07:05:19 +00:00
|
|
|
# -* Makefile *-
|
|
|
|
#
|
|
|
|
# Author : Edward AGAPOV (OCC)
|
|
|
|
# Module : NETGENPLUGIN
|
|
|
|
# Date : 10/01/2004
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
# source path
|
|
|
|
top_srcdir=@top_srcdir@
|
|
|
|
top_builddir=../..
|
|
|
|
srcdir=@srcdir@
|
2006-05-06 08:54:13 +00:00
|
|
|
VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl:${KERNEL_ROOT_DIR}/idl/salome:${GUI_ROOT_DIR}/idl/salome:${GEOM_ROOT_DIR}/idl/salome:${SMESH_ROOT_DIR}/idl/salome:${MED_ROOT_DIR}/idl/salome
|
2004-03-26 07:05:19 +00:00
|
|
|
|
|
|
|
@COMMENCE@
|
|
|
|
|
|
|
|
LIB_SRC = \
|
|
|
|
NETGENPlugin_NETGEN_3D.cxx \
|
|
|
|
NETGENPlugin_NETGEN_3D_i.cxx \
|
2006-05-06 08:54:13 +00:00
|
|
|
NETGENPlugin_NETGEN_2D.cxx \
|
|
|
|
NETGENPlugin_NETGEN_2D_i.cxx \
|
|
|
|
NETGENPlugin_NETGEN_2D3D.cxx \
|
|
|
|
NETGENPlugin_NETGEN_2D3D_i.cxx \
|
|
|
|
NETGENPlugin_Hypothesis.cxx \
|
|
|
|
NETGENPlugin_Hypothesis_i.cxx \
|
|
|
|
NETGENPlugin_Hypothesis_2D.cxx \
|
|
|
|
NETGENPlugin_Hypothesis_2D_i.cxx \
|
|
|
|
NETGENPlugin_Mesher.cxx \
|
2004-03-26 07:05:19 +00:00
|
|
|
NETGENPlugin_i.cxx
|
|
|
|
|
|
|
|
LIB_SERVER_IDL = NETGENPlugin_Algorithm.idl
|
|
|
|
|
2006-05-06 08:54:13 +00:00
|
|
|
LIB_CLIENT_IDL = \
|
|
|
|
SALOME_Component.idl \
|
|
|
|
SALOME_Comm.idl \
|
|
|
|
GEOM_Gen.idl \
|
|
|
|
MED.idl
|
|
|
|
|
2004-03-26 07:05:19 +00:00
|
|
|
# Libraries targets
|
|
|
|
LIB = libNETGENEngine.la
|
|
|
|
|
|
|
|
NETGEN_INCLUDES = @NETGEN_INCLUDES@
|
|
|
|
CPPFLAGS += $(NETGEN_INCLUDES)
|
|
|
|
CXXFLAGS += $(NETGEN_INCLUDES)
|
|
|
|
LDFLAGS += -lNETGEN
|
|
|
|
|
|
|
|
@CONCLUDE@
|