# MED MEDMEM : MED files in memory # # Copyright (C) 2003 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. # # 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org # # # # File : Makefile.in # Module : MED top_srcdir=@top_srcdir@ top_builddir=../../.. srcdir=@srcdir@ VPATH=.:$(srcdir):$(srcdir)/tests MACHINE=PCLINUX @COMMENCE@ EXPORT_PYSCRIPTS = \ EXPORT_HEADERS = \ MEDMEM_dTree.hxx\ MEDMEM_dTreeSommet.hxx\ MEDMEM_InterpolationHighLevelObjects.hxx\ MEDMEM_Interpolation.hxx\ MEDMEM_InterpolationTools.hxx\ MEDMEM_Mapping.hxx\ MEDMEM_MappingTools.hxx\ MEDMEM_WrapperCells.hxx\ MEDMEM_WrapperConnectivity.hxx\ MEDMEM_WrapperField.hxx\ MEDMEM_WrapperMesh.hxx\ MEDMEM_WrapperNodes.hxx # Libraries targets LIB= LIB_SRC = # Executables targets BIN = BIN_SRC = BIN_SERVER_IDL = BIN_CLIENT_IDL = TEST_PROGS = \ test_MEDMEM_InterpolationFlipBack\ test_MEDMEM_InterpolationFromMesh_toMesh\ test_MEDMEM_InterpolationRecopieMaillage\ test_MEDMEM_InterpolationSansRecopieMaillage\ test_MEDMEM_InterpolationTimeStep\ UseCasedTree\ UseCaseInterpolationts\ UseCaseInterpolationwots\ UseCaseMapping\ UseCaseWrapper_Maillage CPPFLAGS+=-U_DEBUG_ $(MED2_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome -I../ CXXFLAGS+=-U_DEBUG_ -ftemplate-depth-42 -I${KERNEL_ROOT_DIR}/include/salome LDFLAGS+=$(MED2_LIBS) $(HDF5_LIBS) -lSALOMELocalTrace -L${KERNEL_ROOT_DIR}/lib/salome LDFLAGSFORBIN+=$(MED2_LIBS) $(HDF5_LIBS) -L../.libs -lmedmem -lSALOMELocalTrace -L${KERNEL_ROOT_DIR}/lib/salome LIBSFORBIN= LDFLAGS= LIBS= # build create_mesh : bin: create_mesh_interpolation create_mesh_interpolation: %: %.c $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(MED2_LIBS) $(HDF5_LIBS) $< @CONCLUDE@