Salome HOME
Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
[samples/pyhello.git] / idl / Makefile.am
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 # This Makefile is responsible of generating the client and server
23 # implementation of IDL interfaces for both C++ and python usage.
24 # The building process of the C++ files is in charge of each source
25 # package and then is not manage here.
26 #
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 BASEIDL_FILES = PYHELLO_Gen.idl
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 # uninstall-local removes too much, but it works in distcheck
60 uninstall-local:
61         rm -rf $(DESTDIR)$(salomepythondir)/*
62
63 mostlyclean-local:
64         -rm -f *.py
65