Salome HOME
Using AutoTools for building procedure
[samples/pyhello.git] / idl / Makefile.am
1 # Copyright (C) 2005  OPEN CASCADE, CEA, EDF R&D, LEG
2 #           PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT
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 #
21 # This Makefile is responsible of generating the client and server
22 # implementation of IDL interfaces for both C++ and python usage.
23 # The building process of the C++ files is in charge of each source
24 # package and then is not manage here.
25 #
26
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 BASEIDL_FILES = PYHELLO_Gen.idl
30
31 EXTRA_DIST+= $(BASEIDL_FILES)
32
33 # This variable defines the files to be installed
34 salomeidl_DATA = $(BASEIDL_FILES)
35
36 # These variables defines the building process of CORBA files
37 OMNIORB_IDL         = @OMNIORB_IDL@
38 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
39 OMNIORB_IDLPYFLAGS  = \
40         @OMNIORB_IDLPYFLAGS@ \
41         -I$(top_builddir)/idl/salome \
42         -I$(KERNEL_ROOT_DIR)/idl/salome
43
44
45 IDLCXXFLAGS = \
46         -bcxx \
47         @IDLCXXFLAGS@ \
48         -I$(top_builddir)/idl/salome \
49         -I$(KERNEL_ROOT_DIR)/idl/salome \
50         -I$(top_builddir)/salome_adm/unix
51 IDLPYFLAGS  = \
52         @IDLPYFLAGS@ \
53         -I$(KERNEL_ROOT_DIR)/idl/salome
54
55 # install python client (generated from idl file
56 install: install-pyidl install-idl
57
58 # create directory $(idldir) and copy idl files into it
59 install-idl: $(BASEIDL_FILES)
60         $(INSTALL) -d  $(salomeidldir)
61         cp -p $^ $(salomeidldir)
62
63 install-pyidl: $(BASEIDL_FILES)
64         $(INSTALL) -d  $(PYTHON_SITE_INSTALL)
65         @for file in $^ dummy; do \
66           if [ $$file != "dummy" ]; then \
67              $(OMNIORB_IDL) $(OMNIORB_IDLPYFLAGS) -C$(PYTHON_SITE_INSTALL) $$file ; \
68           fi ; \
69         done ;
70
71 # uninstall-local removes too much, but it works in distcheck
72 uninstall-local:
73         rm -rf $(pkgpythondir)/*
74
75 mostlyclean-local:
76         -rm -f *.py
77