]> SALOME platform Git repositories - modules/homard.git/blob - idl/Makefile.am
Salome HOME
PR: modifs Gerald 20120216
[modules/homard.git] / idl / Makefile.am
1 # Copyright (C) 2011  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
28
29 # This variable defines the files to be installed
30 dist_salomeidl_DATA = $(BASEIDL_FILES)
31
32 # GUI idl common library
33 lib_LTLIBRARIES = libSalomeIDLHOMARD.la
34
35 # Sources built from idl files
36 nodist_libSalomeIDLHOMARD_la_SOURCES = \
37         HOMARD_CasSK.cc \
38         HOMARD_ZoneSK.cc \
39         HOMARD_HypothesisSK.cc \
40         HOMARD_IterationSK.cc \
41         HOMARD_BoundarySK.cc \
42         HOMARD_GenSK.cc
43
44 BUILT_SOURCES = $(nodist_libSalomeIDLHOMARD_la_SOURCES)
45
46 # header files must be exported: other modules have to use this library
47 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
48
49 libSalomeIDLHOMARD_la_CPPFLAGS =                \
50         $(KERNEL_CXXFLAGS)                      \
51         -I$(top_builddir)/adm_local/unix        \
52         -I$(top_builddir)/idl                   \
53         $(MED_CXXFLAGS)                         \
54         @CORBA_CXXFLAGS@                        \
55         @CORBA_INCLUDES@
56
57 libSalomeIDLHOMARD_la_LDFLAGS = -no-undefined -version-info=0:0:0
58 libSalomeIDLHOMARD_la_LIBADD  =                 \
59         $(KERNEL_LDFLAGS) -lSalomeIDLKernel     \
60         @CORBA_LIBS@
61 #        $(VISU_LDFLAGS) -lSalomeIDLVisu        
62 #        $(MED_LDFLAGS) -lSalomeIDLMed           
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$(MED_ROOT_DIR)/idl/salome \
78         -I$(top_builddir)/adm_local/unix
79 IDLPYFLAGS  = \
80         @IDLPYFLAGS@ \
81         -I$(KERNEL_ROOT_DIR)/idl/salome \
82         -I$(MED_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 # uninstall-local removes too much, but it works in distcheck
98 uninstall-local:
99         rm -rf $(DESTDIR)$(salomepythondir)/*
100
101 mostlyclean-local:
102         -rm -f *.hh *.cc .depidl
103
104 # we use cpp to generate dependencies between idl files.
105 # option x c tells the preprocessor to consider idl as a c file.
106 # if an idl is modified, all idl dependencies are rebuilt
107
108 .depidl: $(BASEIDL_FILES)
109         @echo "" > $@
110         @for dep in $^ dummy; do \
111           if [ $$dep != "dummy" ]; then \
112             echo Building dependencies for $$dep; \
113             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome  -I$(MED_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
114             sed 's/\.o/\SK.cc/' >>$@; \
115           fi; \
116         done ;
117
118 -include .depidl