Salome HOME
Merge from V6_main 01/04/2013
[samples/pyhello.git] / idl / Makefile.am
1 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
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.
7 #
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.
12 #
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
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
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.
24 #
25 include $(top_srcdir)/adm_local/unix/make_common_starter.am
26
27 BASEIDL_FILES = PYHELLO_Gen.idl
28
29 BASEIDL_FILES_PY=$(BASEIDL_FILES:%.idl=%_idl.py)
30
31 # This variable defines the files to be installed
32 dist_salomeidl_DATA = $(BASEIDL_FILES)
33
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
41
42 IDLCXXFLAGS = \
43         -bcxx \
44         @IDLCXXFLAGS@ \
45         -I$(top_builddir)/idl/salome \
46         -I$(KERNEL_ROOT_DIR)/idl/salome
47 IDLPYFLAGS  = \
48         @IDLPYFLAGS@ \
49         -I$(KERNEL_ROOT_DIR)/idl/salome
50
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 ; \
56           fi ; \
57         done ;
58
59 # we want to remove only staff generated for IDL files and nothing more
60 uninstall-local:
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 ; \
64         done ; \
65         for filen in $(BASEIDL_FILES_PY) ; do \
66           echo "Removing $(DESTDIR)$(salomepythondir)/$${filen}" && rm -f $(DESTDIR)$(salomepythondir)/$${filen}* ; \
67         done
68
69 mostlyclean-local:
70         -rm -f *.py
71