]> SALOME platform Git repositories - plugins/hybridplugin.git/blob - idl/Makefile.am
Salome HOME
Merge from BR_V5_DEV 16Feb09
[plugins/hybridplugin.git] / idl / Makefile.am
1 #  Copyright (C) 2004-2008  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 # This Makefile is responsible of generating the client and server
20 # implementation of IDL interfaces for both C++ and python usage.
21 # The building process of the C++ files is in charge of each source
22 # package and then is not manage here.
23 #
24 include $(top_srcdir)/adm_local/unix/make_common_starter.am
25
26 BASEIDL_FILES = GHS3DPlugin_Algorithm.idl
27
28 # This variable defines the files to be installed
29 dist_salomeidl_DATA = $(BASEIDL_FILES)
30
31 # GUI idl common library
32 lib_LTLIBRARIES = libSalomeIDLGHS3DPLUGIN.la
33
34 # Sources built from idl files
35 nodist_libSalomeIDLGHS3DPLUGIN_la_SOURCES = \
36         GHS3DPlugin_AlgorithmSK.cc \
37         GHS3DPlugin_AlgorithmDynSK.cc
38 GHS3DPlugin_AlgorithmDynSK.cc: GHS3DPlugin_AlgorithmSK.cc
39
40 # header files must be exported: other modules have to use this library
41 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
42
43 libSalomeIDLGHS3DPLUGIN_la_CPPFLAGS = \
44         -I$(top_builddir)/salome_adm/unix \
45         -I$(top_builddir)/idl \
46         $(CORBA_CXXFLAGS) \
47         $(CORBA_INCLUDES) \
48         $(KERNEL_CXXFLAGS) \
49         $(GEOM_CXXFLAGS) \
50         $(SMESH_CXXFLAGS)
51
52 libSalomeIDLGHS3DPLUGIN_la_LDFLAGS = -no-undefined -version-info=0:0:0
53 libSalomeIDLGHS3DPLUGIN_la_LIBADD  = \
54         $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
55         $(GEOM_LDFLAGS) -lSalomeIDLGEOM \
56         $(SMESH_LDFLAGS) -lSalomeIDLSMESH \
57         @CORBA_LIBS@
58
59 # These variables defines the building process of CORBA files
60 OMNIORB_IDL         = @OMNIORB_IDL@
61 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
62 OMNIORB_IDLPYFLAGS  = \
63         @OMNIORB_IDLPYFLAGS@ \
64         -I$(top_builddir)/idl/salome \
65         -I$(KERNEL_ROOT_DIR)/idl/salome \
66         -I$(GEOM_ROOT_DIR)/idl/salome \
67         -I$(SMESH_ROOT_DIR)/idl/salome
68
69 IDLCXXFLAGS = \
70         -bcxx \
71         @IDLCXXFLAGS@ \
72         -I$(top_builddir)/idl/salome \
73         -I$(KERNEL_ROOT_DIR)/idl/salome \
74         -I$(GEOM_ROOT_DIR)/idl/salome \
75         -I$(SMESH_ROOT_DIR)/idl/salome \
76         -I$(top_builddir)/salome_adm/unix
77 IDLPYFLAGS  = \
78         @IDLPYFLAGS@ \
79         -I$(KERNEL_ROOT_DIR)/idl/salome \
80         -I$(GEOM_ROOT_DIR)/idl/salome \
81         -I$(SMESH_ROOT_DIR)/idl/salome
82
83 # potential problem on parallel make on the following - multiple outputs
84 SUFFIXES = .idl .hh SK.cc
85 .idlSK.cc:
86         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
87 .idl.hh:
88         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
89
90 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
91         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
92         ls $^ | while read file; do \
93           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
94         done
95
96 # uninstall-local removes too much, but it works in distcheck
97 uninstall-local:
98         rm -rf $(DESTDIR)$(salomepythondir)/*
99
100 mostlyclean-local:
101         -rm -f *.hh *.cc .depidl
102
103 # we use cpp to generate dependencies between idl files.
104 # option x c tells the preprocessor to consider idl as a c file.
105 # if an idl is modified, all idl dependencies are rebuilt
106
107 .depidl: $(BASEIDL_FILES)
108         @echo "" > $@
109         @for dep in $^ dummy; do \
110           if [ $$dep != "dummy" ]; then \
111             echo Building dependencies for $$dep; \
112             $(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 -I$(top_builddir)/salome_adm/unix $$dep 2>/dev/null | \
113             sed 's/\.o/\SK.cc/' >>$@; \
114           fi; \
115         done ;
116
117 -include .depidl