Salome HOME
Update copyrights
[samples/genericsolver.git] / idl / Makefile.am
1 #  Copyright (C) 2009-2013 EDF R&D
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 # This Makefile is responsible of generating the client and server
20 # implementation of IDL interfaces for both C++ and python usage.
21 # The building process of the C++ files is in charge of each source
22 # package and then is not manage here.
23 #
24 # $Id$
25 #
26
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 BASEIDL_FILES = GENERICSOLVER_Gen.idl DEVIATION_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         -I$(top_builddir)/salome_adm/unix
48 IDLPYFLAGS  = \
49         @IDLPYFLAGS@ \
50         -I$(KERNEL_ROOT_DIR)/idl/salome
51
52 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
53         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
54         @for file in $^ dummy; do \
55           if [ $$file != "dummy" ]; then \
56              $(OMNIORB_IDL) $(OMNIORB_IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
57           fi ; \
58         done ;
59
60 # uninstall-local removes too much, but it works in distcheck
61 uninstall-local:
62         rm -rf $(DESTDIR)$(salomepythondir)/*
63
64 mostlyclean-local:
65         -rm -f *.py
66