]> SALOME platform Git repositories - plugins/ghs3dprlplugin.git/blob - idl/Makefile.am
Salome HOME
Merge from BR_V5_DEV 16Feb09
[plugins/ghs3dprlplugin.git] / idl / Makefile.am
1 # Copyright (C) 2007-2008 OPEN CASCADE, 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 # ---
25
26 #
27 # This Makefile is responsible of generating the client and server
28 # implementation of IDL interfaces for both C++ and python usage.
29 # The building process of the C++ files is in charge of each source
30 # package and then is not manage here.
31 #
32
33 include $(top_srcdir)/adm_local/unix/make_common_starter.am
34
35 BASEIDL_FILES = GHS3DPRLPlugin_Algorithm.idl
36
37 # This variable defines the files to be installed
38 dist_salomeidl_DATA = $(BASEIDL_FILES)
39
40 # GUI idl common library
41 lib_LTLIBRARIES = libSalomeIDLGHS3DPRLPLUGIN.la
42
43 # Sources built from idl files
44 nodist_libSalomeIDLGHS3DPRLPLUGIN_la_SOURCES = GHS3DPRLPlugin_AlgorithmSK.cc
45
46 # header files must be exported: other modules have to use this library
47 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
48
49 libSalomeIDLGHS3DPRLPLUGIN_la_CPPFLAGS = \
50         $(KERNEL_CXXFLAGS) \
51         $(GEOM_CXXFLAGS) \
52         $(SMESH_CXXFLAGS) \
53         @CORBA_CXXFLAGS@ \
54         @CORBA_INCLUDES@ \
55         -I$(top_builddir)/salome_adm/unix \
56         -I$(top_builddir)/idl
57
58 libSalomeIDLGHS3DPRLPLUGIN_la_LDFLAGS = -no-undefined -version-info=0:0:0
59 libSalomeIDLGHS3DPRLPLUGIN_la_LIBADD  = \
60         $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
61         $(SMESH_LDFLAGS) -lSalomeIDLSMESH \
62         $(GEOM_LDFLAGS) -lSalomeIDLGEOM \
63         @CORBA_LIBS@
64
65 # These variables defines the building process of CORBA files
66 OMNIORB_IDL         = @OMNIORB_IDL@
67 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
68 OMNIORB_IDLPYFLAGS  = @OMNIORB_IDLPYFLAGS@ \
69         -I$(top_builddir)/idl/salome \
70         -I$(KERNEL_ROOT_DIR)/idl/salome \
71         -I$(GEOM_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$(SMESH_ROOT_DIR)/idl/salome \
81         -I$(top_builddir)/salome_adm/unix
82 IDLPYFLAGS  = \
83         @IDLPYFLAGS@ \
84         -I$(KERNEL_ROOT_DIR)/idl/salome \
85         -I$(GEOM_ROOT_DIR)/idl/salome \
86         -I$(SMESH_ROOT_DIR)/idl/salome
87
88 # potential problem on parallel make on the following - multiple outputs
89 SUFFIXES = .idl .hh SK.cc
90 .idlSK.cc:
91         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
92 .idl.hh:
93         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
94
95 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
96         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
97         ls $^ | while read file; do \
98           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
99         done
100
101 # uninstall-local removes too much, but it works in distcheck
102 uninstall-local:
103         rm -rf $(DESTDIR)$(salomepythondir)/*
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 -I$(GEOM_ROOT_DIR)/idl/salome -I$(SMESH_ROOT_DIR)/idl/salome -I$(top_builddir)/salome_adm/unix $$dep 2>/dev/null | \
118             sed 's/\.o/\SK.cc/' >>$@; \
119           fi; \
120         done ;
121
122 -include .depidl