1 # Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 # This Makefile is responsible of generating the client and server
21 # implementation of IDL interfaces for both C++ and python usage.
22 # The building process of the C++ files is in charge of each source
23 # package and then is not manage here.
25 include $(top_srcdir)/adm_local/unix/make_common_starter.am
27 BASEIDL_FILES = PYHELLO_Gen.idl
29 BASEIDL_FILES_PY=$(BASEIDL_FILES:%.idl=%_idl.py)
31 # This variable defines the files to be installed
32 dist_salomeidl_DATA = $(BASEIDL_FILES)
34 # These variables defines the building process of CORBA files
35 OMNIORB_IDL = @OMNIORB_IDL@
36 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
37 OMNIORB_IDLPYFLAGS = \
38 @OMNIORB_IDLPYFLAGS@ \
39 -I$(top_builddir)/idl/salome \
40 -I$(KERNEL_ROOT_DIR)/idl/salome
45 -I$(top_builddir)/idl/salome \
46 -I$(KERNEL_ROOT_DIR)/idl/salome
49 -I$(KERNEL_ROOT_DIR)/idl/salome
51 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
52 $(INSTALL) -d $(DESTDIR)$(salomepythondir)
53 @for file in $^ dummy; do \
54 if [ $$file != "dummy" ]; then \
55 $(OMNIORB_IDL) $(OMNIORB_IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
59 # we want to remove only staff generated for IDL files and nothing more
61 @for modulen in PYHELLO_ORB ; do \
62 test -d $(DESTDIR)$(salomepythondir)/$${modulen} && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen} ; \
63 test -d $(DESTDIR)$(salomepythondir)/$${modulen}__POA && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}__POA" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen}__POA ; \
65 for filen in $(BASEIDL_FILES_PY) ; do \
66 echo "Removing $(DESTDIR)$(salomepythondir)/$${filen}" && rm -f $(DESTDIR)$(salomepythondir)/$${filen}* ; \