]> SALOME platform Git repositories - plugins/hexoticplugin.git/blob - idl/Makefile.am
Salome HOME
Fix compilation problems
[plugins/hexoticplugin.git] / idl / Makefile.am
1 # Copyright (C) 2007-2013  CEA/DEN, 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
20 # ---
21 # File   : Makefile.am
22 # Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
23 # ---
24 # This Makefile is responsible of generating the client and server
25 # implementation of IDL interfaces for both C++ and python usage.
26 # The building process of the C++ files is in charge of each source
27 # package and then is not manage here.
28 #
29 include $(top_srcdir)/adm_local/unix/make_common_starter.am
30
31 BASEIDL_FILES = HexoticPlugin_Algorithm.idl
32
33 BASEIDL_FILES_PY=$(BASEIDL_FILES:%.idl=%_idl.py)
34
35 # This variable defines the files to be installed
36 dist_salomeidl_DATA = $(BASEIDL_FILES)
37
38 # GUI idl common library
39 lib_LTLIBRARIES = libSalomeIDLHexoticPLUGIN.la
40
41 # Sources built from idl files
42 nodist_libSalomeIDLHexoticPLUGIN_la_SOURCES = HexoticPlugin_AlgorithmSK.cc
43
44 # header files must be exported: other modules have to use this library
45 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
46
47 libSalomeIDLHexoticPLUGIN_la_CPPFLAGS =\
48         $(KERNEL_CXXFLAGS) \
49         $(GEOM_CXXFLAGS) \
50         $(SMESH_CXXFLAGS) \
51         @CORBA_CXXFLAGS@ \
52         @CORBA_INCLUDES@ \
53         -I$(top_builddir)/idl
54
55 libSalomeIDLHexoticPLUGIN_la_LDFLAGS = -no-undefined -version-info=0:0:0
56 libSalomeIDLHexoticPLUGIN_la_LIBADD  = \
57         $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
58         $(SMESH_LDFLAGS) -lSalomeIDLSMESH \
59         $(GEOM_LDFLAGS) -lSalomeIDLGEOM \
60         @CORBA_LIBS@
61
62 # These variables defines the building process of CORBA files
63 OMNIORB_IDL         = @OMNIORB_IDL@
64 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
65 OMNIORB_IDLPYFLAGS  = @OMNIORB_IDLPYFLAGS@ \
66         -I$(top_builddir)/idl/salome \
67         -I$(KERNEL_ROOT_DIR)/idl/salome \
68         -I$(GEOM_ROOT_DIR)/idl/salome \
69         -I$(SMESH_ROOT_DIR)/idl/salome
70
71 IDLCXXFLAGS = \
72         -bcxx \
73         @IDLCXXFLAGS@ \
74         -I$(top_builddir)/idl/salome \
75         -I$(KERNEL_ROOT_DIR)/idl/salome \
76         -I$(GEOM_ROOT_DIR)/idl/salome \
77         -I$(SMESH_ROOT_DIR)/idl/salome
78 IDLPYFLAGS  = \
79         @IDLPYFLAGS@ \
80         -I$(KERNEL_ROOT_DIR)/idl/salome \
81         -I$(GEOM_ROOT_DIR)/idl/salome \
82         -I$(SMESH_ROOT_DIR)/idl/salome
83
84 # potential problem on parallel make on the following - multiple outputs
85 SUFFIXES = .idl .hh SK.cc
86 .idlSK.cc:
87         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
88 .idl.hh:
89         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
90
91 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
92         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
93         ls $^ | while read file; do \
94           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
95         done
96
97 # we want to remove only staff generated for IDL files and nothing more
98 uninstall-local:
99         @for modulen in HexoticPlugin ; do \
100           test -d $(DESTDIR)$(salomepythondir)/$${modulen} && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen} ; \
101           test -d $(DESTDIR)$(salomepythondir)/$${modulen}__POA && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}__POA" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen}__POA ; \
102         done ; \
103         for filen in $(BASEIDL_FILES_PY) ; do \
104           echo "Removing $(DESTDIR)$(salomepythondir)/$${filen}" && rm -f $(DESTDIR)$(salomepythondir)/$${filen}* ; \
105         done
106
107 mostlyclean-local:
108         -rm -f *.hh *.cc .depidl
109
110 # we use cpp to generate dependencies between idl files.
111 # option x c tells the preprocessor to consider idl as a c file.
112 # if an idl is modified, all idl dependencies are rebuilt
113
114 .depidl: $(BASEIDL_FILES)
115         @echo "" > $@
116         @for dep in $^ dummy; do \
117           if [ $$dep != "dummy" ]; then \
118             echo Building dependencies for $$dep; \
119             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome -I$(GEOM_ROOT_DIR)/idl/salome -I$(SMESH_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
120             sed 's/\.o/\SK.cc/' >>$@; \
121           fi; \
122         done ;
123
124 -include .depidl