Salome HOME
Merge from BR_PORTING_VTK6 01/03/2013
[modules/gui.git] / idl / Makefile.am
1 # Copyright (C) 2007-2012  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
23 # This Makefile is responsible of generating the client and server
24 # implementation of IDL interfaces for both C++ and python usage.
25 # The building process of the C++ files is in charge of each source
26 # package and then is not manage here.
27 #
28 include $(top_srcdir)/adm_local/unix/make_common_starter.am
29
30 BASEIDL_FILES = SalomeApp_Engine.idl
31
32 BASEIDL_FILES_PY=$(BASEIDL_FILES:%.idl=%_idl.py)
33
34 # This variable defines the files to be installed
35 dist_salomeidl_DATA = $(BASEIDL_FILES)
36
37 # GUI idl common library
38 lib_LTLIBRARIES = libSalomeIDLGUI.la
39
40 # Sources built from idl files
41 nodist_libSalomeIDLGUI_la_SOURCES = SalomeApp_EngineSK.cc
42
43 # header files must be exported: other modules have to use this library
44 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
45
46 libSalomeIDLGUI_la_CPPFLAGS = \
47         -I$(top_builddir)/idl \
48         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @KERNEL_CXXFLAGS@
49 libSalomeIDLGUI_la_LDFLAGS = -no-undefined -version-info=0:0:0
50 libSalomeIDLGUI_la_LIBADD  = @CORBA_LIBS@
51
52 # These variables defines the building process of CORBA files
53 OMNIORB_IDL         = @OMNIORB_IDL@
54 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
55 OMNIORB_IDLPYFLAGS  = @OMNIORB_IDLPYFLAGS@ -I$(top_builddir)/idl/salome -I$(KERNEL_ROOT_DIR)/idl/salome 
56 IDLCXXFLAGS = -bcxx @IDLCXXFLAGS@ -I$(top_builddir)/idl/salome -I$(KERNEL_ROOT_DIR)/idl/salome
57 IDLPYFLAGS  = @IDLPYFLAGS@ -I$(KERNEL_ROOT_DIR)/idl/salome
58
59 # potential problem on parallel make on the following - multiple outputs
60 SUFFIXES = .idl .hh SK.cc
61 .idlSK.cc:
62         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
63 .idl.hh:
64         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
65
66 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
67         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
68         ls $^ | while read file; do \
69           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
70         done
71
72 # we want to remove only staff generated for IDL files and nothing more
73 uninstall-local:
74         @for modulen in SalomeApp ; do \
75           test -d $(DESTDIR)$(salomepythondir)/$${modulen} && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen} ; \
76           test -d $(DESTDIR)$(salomepythondir)/$${modulen}__POA && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}__POA" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen}__POA ; \
77         done ; \
78         for filen in $(BASEIDL_FILES_PY) ; do \
79           echo "Removing $(DESTDIR)$(salomepythondir)/$${filen}" && rm -f $(DESTDIR)$(salomepythondir)/$${filen}* ; \
80         done
81
82 mostlyclean-local:
83         -rm -f *.hh *.cc .depidl
84
85 # we use cpp to generate dependencies between idl files.
86 # option x c tells the preprocessor to consider idl as a c file.
87 # if an idl is modified, all idl dependencies are rebuilt
88
89 .depidl: $(BASEIDL_FILES)
90         @echo "" > $@
91         @for dep in $^ dummy; do \
92           if [ $$dep != "dummy" ]; then \
93             echo Building dependencies for $$dep; \
94             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
95             sed 's/\.o/\SK.cc/' >>$@; \
96           fi; \
97         done ;
98
99 -include .depidl