Salome HOME
Nouvelles icones
[modules/homard.git] / idl / Makefile.am
1 # Copyright (C) 2011-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 # 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 = HOMARD_Gen.idl HOMARD_Cas.idl HOMARD_Hypothesis.idl HOMARD_Iteration.idl HOMARD_Zone.idl HOMARD_Boundary.idl HOMARD_YACS.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 = libSalomeIDLHOMARD.la
36
37 # Sources built from idl files
38 nodist_libSalomeIDLHOMARD_la_SOURCES = \
39         HOMARD_CasSK.cc \
40         HOMARD_ZoneSK.cc \
41         HOMARD_HypothesisSK.cc \
42         HOMARD_IterationSK.cc \
43         HOMARD_BoundarySK.cc \
44         HOMARD_GenSK.cc \
45         HOMARD_YACSSK.cc
46
47 BUILT_SOURCES = $(nodist_libSalomeIDLHOMARD_la_SOURCES)
48
49 # header files must be exported: other modules have to use this library
50 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
51
52 libSalomeIDLHOMARD_la_CPPFLAGS =                \
53         $(KERNEL_CXXFLAGS)                      \
54         -I$(top_builddir)/adm_local/unix        \
55         -I$(top_builddir)/idl                   \
56         @CORBA_CXXFLAGS@                        \
57         @CORBA_INCLUDES@
58
59 libSalomeIDLHOMARD_la_LDFLAGS = -no-undefined -version-info=0:0:0
60 libSalomeIDLHOMARD_la_LIBADD  =                 \
61         $(KERNEL_LDFLAGS) -lSalomeIDLKernel     \
62         @CORBA_LIBS@
63
64 # These variables defines the building process of CORBA files
65 OMNIORB_IDL         = @OMNIORB_IDL@
66 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
67 OMNIORB_IDLPYFLAGS  = \
68         @OMNIORB_IDLPYFLAGS@ \
69         -I$(top_builddir)/idl/salome \
70         -I$(KERNEL_ROOT_DIR)/idl/salome
71
72 IDLCXXFLAGS = \
73         -bcxx \
74         @IDLCXXFLAGS@ \
75         -I$(top_builddir)/idl/salome \
76         -I$(KERNEL_ROOT_DIR)/idl/salome \
77         -I$(top_builddir)/adm_local/unix
78 IDLPYFLAGS  = \
79         @IDLPYFLAGS@ \
80         -I$(KERNEL_ROOT_DIR)/idl/salome 
81
82 # potential problem on parallel make on the following - multiple outputs
83 SUFFIXES = .idl .hh SK.cc
84 .idlSK.cc:
85         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
86 #.idl.hh:
87 #       $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
88
89 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
90         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
91         ls $^ | while read file; do \
92           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
93         done
94
95 # we want to remove only staff generated for IDL files and nothing more
96 uninstall-local:
97         @for modulen in HOMARD ; do \
98           test -d $(DESTDIR)$(salomepythondir)/$${modulen} && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen} ; \
99           test -d $(DESTDIR)$(salomepythondir)/$${modulen}__POA && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}__POA" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen}__POA ; \
100         done ; \
101         for filen in $(BASEIDL_FILES_PY) ; do \
102           echo "Removing $(DESTDIR)$(salomepythondir)/$${filen}" && rm -f $(DESTDIR)$(salomepythondir)/$${filen}* ; \
103         done
104
105 mostlyclean-local:
106         -rm -f *.hh *.cc .depidl
107
108 # we use cpp to generate dependencies between idl files.
109 # option x c tells the preprocessor to consider idl as a c file.
110 # if an idl is modified, all idl dependencies are rebuilt
111
112 .depidl: $(BASEIDL_FILES)
113         @echo "" > $@
114         @for dep in $^ dummy; do \
115           if [ $$dep != "dummy" ]; then \
116             echo Building dependencies for $$dep; \
117             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
118             sed 's/\.o/\SK.cc/' >>$@; \
119           fi; \
120         done ;
121
122 -include .depidl