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