# VISU VISU_SWIG : binding of C++ implementation and Python # # 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.salome-platform.org/ or email : webmaster.salome@opencascade.com # # # File : Makefile.am # Author : Paul RASCLE, EDF # Module : VISU include $(top_srcdir)/adm_local/unix/make_common_starter.am lib_LTLIBRARIES= libVISU_Swigcmodule.la dist_libVISU_Swigcmodule_la_SOURCES= VISU_Gen_s.cc nodist_libVISU_Swigcmodule_la_SOURCES= libVISU_Swig_wrap.cxx SWIG_DEF = libVISU_Swig.i SWIG_FLAGS= @SWIG_FLAGS@ -I$(srcdir) libVISU_Swig.py: libVISU_Swig_wrap.cxx libVISU_Swig_wrap.cxx: $(SWIG_DEF) $(SWIG) $(SWIG_FLAGS) -o $@ $< libVISU_Swigcmodule_la_CPPFLAGS= \ -ftemplate-depth-32 \ $(PYTHON_INCLUDES) \ $(HDF5_INCLUDES) \ $(QT_INCLUDES) \ $(VTK_INCLUDES) \ $(KERNEL_CXXFLAGS) \ $(GUI_CXXFLAGS) \ $(MED_CXXFLAGS) \ $(BOOST_CPPFLAGS) \ -I$(srcdir)/../CONVERTOR -I$(srcdir)/../PIPELINE libVISU_Swigcmodule_la_LDFLAGS= $(PYTHON_LIBS) ../CONVERTOR/libVisuConvertor.la ../PIPELINE/libVisuPipeLine.la dist_salomescript_DATA= libVISU_Swig.py batchmode_visu.py batchmode_visu_table.py batchmode_visu_view3d.py \ visu_med.py visu_view3d.py visu.py visu_gui.py visu_prs_example.py \ visu_table.py visu_big_table.py visu_view.py visu_delete.py \ visu_swig_test.py visu_split_views.py \ visu_succcessive_animation.py visu_apply_properties.py visu_apply_properties_successive.py \ VISU_Example_01.py VISU_Example_02.py VISU_Example_03.py VISU_Example_04.py \ VISU_Example_05.py VISU_Example_06.py VISU_Example_07.py dist_sharedpkgpython_DATA= VISU_shared_modules.py CLEANFILES= libVISU_Swig.py libVISU_Swig_wrap.cxx install-exec-hook: $(libdir)/_libVISU_Swig.so $(libdir)/_libVISU_Swig.so: ( cd $(libdir); ln -sf libVISU_Swigcmodule.so _libVISU_Swig.so; )