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.
|
|
|
|
#
|
|
|
|
# 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
|
2008-03-07 12:47:05 +05:00
|
|
|
#
|
|
|
|
# This Makefile is responsible of generating the client and server
|
|
|
|
# implementation of IDL interfaces for both C++ and python usage.
|
|
|
|
# The building process of the C++ files is in charge of each source
|
|
|
|
# package and then is not manage here.
|
|
|
|
#
|
|
|
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|
|
|
|
|
|
|
BASEIDL_FILES = \
|
|
|
|
SMESH_Gen.idl \
|
|
|
|
SMESH_Mesh.idl \
|
|
|
|
SMESH_Hypothesis.idl \
|
|
|
|
SMESH_BasicHypothesis.idl \
|
|
|
|
SMESH_Filter.idl \
|
|
|
|
SMESH_Group.idl \
|
|
|
|
SMESH_Pattern.idl \
|
|
|
|
SMESH_MeshEditor.idl
|
|
|
|
|
|
|
|
# This variable defines the files to be installed
|
2009-02-17 10:27:49 +05:00
|
|
|
dist_salomeidl_DATA = $(BASEIDL_FILES)
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
# GUI idl common library
|
|
|
|
lib_LTLIBRARIES = libSalomeIDLSMESH.la
|
|
|
|
|
|
|
|
# Sources built from idl files
|
|
|
|
nodist_libSalomeIDLSMESH_la_SOURCES = \
|
|
|
|
SMESH_MeshSK.cc \
|
|
|
|
SMESH_HypothesisSK.cc \
|
|
|
|
SMESH_GenSK.cc \
|
|
|
|
SMESH_BasicHypothesisSK.cc \
|
|
|
|
SMESH_FilterSK.cc \
|
|
|
|
SMESH_GroupSK.cc \
|
|
|
|
SMESH_PatternSK.cc \
|
|
|
|
SMESH_MeshEditorSK.cc
|
|
|
|
|
|
|
|
# header files must be exported: other modules have to use this library
|
2009-02-17 10:27:49 +05:00
|
|
|
nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
|
|
|
|
|
|
|
|
libSalomeIDLSMESH_la_CPPFLAGS = \
|
|
|
|
-I$(top_builddir)/idl \
|
|
|
|
$(CORBA_CXXFLAGS) $(CORBA_INCLUDES) \
|
|
|
|
$(KERNEL_CXXFLAGS) $(MED_CXXFLAGS) \
|
2008-03-07 12:47:05 +05:00
|
|
|
$(GEOM_CXXFLAGS)
|
|
|
|
libSalomeIDLSMESH_la_LDFLAGS = -no-undefined -version-info=0:0:0
|
2009-02-17 10:27:49 +05:00
|
|
|
libSalomeIDLSMESH_la_LIBADD = \
|
|
|
|
@CORBA_LIBS@ \
|
|
|
|
$(MED_LDFLAGS) -lSalomeIDLMED \
|
|
|
|
$(GEOM_LDFLAGS) -lSalomeIDLGEOM \
|
|
|
|
$(KERNEL_LDFLAGS) -lSalomeIDLKernel
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
# These variables defines the building process of CORBA files
|
|
|
|
OMNIORB_IDL = @OMNIORB_IDL@
|
|
|
|
OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
|
|
|
|
OMNIORB_IDLPYFLAGS = \
|
|
|
|
@OMNIORB_IDLPYFLAGS@ \
|
|
|
|
-I$(top_builddir)/idl/salome \
|
|
|
|
-I$(KERNEL_ROOT_DIR)/idl/salome \
|
|
|
|
-I$(MED_ROOT_DIR)/idl/salome \
|
|
|
|
-I$(GEOM_ROOT_DIR)/idl/salome
|
|
|
|
|
|
|
|
IDLCXXFLAGS = \
|
|
|
|
-bcxx \
|
|
|
|
@IDLCXXFLAGS@ \
|
|
|
|
-I$(top_builddir)/idl/salome \
|
|
|
|
-I$(KERNEL_ROOT_DIR)/idl/salome \
|
|
|
|
-I$(MED_ROOT_DIR)/idl/salome \
|
2009-08-13 11:50:13 +06:00
|
|
|
-I$(GEOM_ROOT_DIR)/idl/salome
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
IDLPYFLAGS = \
|
|
|
|
@IDLPYFLAGS@ \
|
|
|
|
-I$(KERNEL_ROOT_DIR)/idl/salome \
|
|
|
|
-I$(MED_ROOT_DIR)/idl/salome \
|
|
|
|
-I$(GEOM_ROOT_DIR)/idl/salome
|
|
|
|
|
|
|
|
# potential problem on parallel make on the following - multiple outputs
|
|
|
|
SUFFIXES = .idl .hh SK.cc
|
|
|
|
.idlSK.cc:
|
|
|
|
$(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
|
|
|
|
.idl.hh:
|
|
|
|
$(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
|
|
|
|
|
|
|
|
install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
|
2009-02-17 10:27:49 +05:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(salomepythondir)
|
2008-03-07 12:47:05 +05:00
|
|
|
ls $^ | while read file; do \
|
2009-02-17 10:27:49 +05:00
|
|
|
$(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
|
2008-03-07 12:47:05 +05:00
|
|
|
done
|
|
|
|
|
|
|
|
# uninstall-local removes too much, but it works in distcheck
|
|
|
|
uninstall-local:
|
2009-02-17 10:27:49 +05:00
|
|
|
rm -rf $(DESTDIR)$(salomepythondir)/*
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
mostlyclean-local:
|
|
|
|
-rm -f *.hh *.cc .depidl
|
|
|
|
|
|
|
|
# we use cpp to generate dependencies between idl files.
|
|
|
|
# option x c tells the preprocessor to consider idl as a c file.
|
|
|
|
# if an idl is modified, all idl dependencies are rebuilt
|
|
|
|
|
|
|
|
.depidl: $(BASEIDL_FILES)
|
|
|
|
@echo "" > $@
|
|
|
|
@for dep in $^ dummy; do \
|
|
|
|
if [ $$dep != "dummy" ]; then \
|
|
|
|
echo Building dependencies for $$dep; \
|
|
|
|
$(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome -I$(MED_ROOT_DIR)/idl/salome -I$(GEOM_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
|
|
|
|
sed 's/\.o/\SK.cc/' >>$@; \
|
|
|
|
fi; \
|
|
|
|
done ;
|
|
|
|
|
|
|
|
-include .depidl
|