Salome HOME
Update doc
[plugins/blsurfplugin.git] / idl / Makefile.am
1 # Copyright (C) 2007-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 # ---
21 # File   : Makefile.am
22 # Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
23 # ---
24 # This Makefile is responsible of generating the client and server
25 # implementation of IDL interfaces for both C++ and python usage.
26 # The building process of the C++ files is in charge of each source
27 # package and then is not manage here.
28 #
29 include $(top_srcdir)/adm_local/unix/make_common_starter.am
30
31 BASEIDL_FILES = BLSURFPlugin_Algorithm.idl
32
33 # This variable defines the files to be installed
34 dist_salomeidl_DATA = $(BASEIDL_FILES)
35
36 # GUI idl common library
37 lib_LTLIBRARIES = libSalomeIDLBLSURFPLUGIN.la
38
39 # Sources built from idl files
40 nodist_libSalomeIDLBLSURFPLUGIN_la_SOURCES = BLSURFPlugin_AlgorithmSK.cc
41
42 # header files must be exported: other modules have to use this library
43 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
44
45 libSalomeIDLBLSURFPLUGIN_la_CPPFLAGS = \
46         $(KERNEL_CXXFLAGS) \
47         $(GEOM_CXXFLAGS) \
48         $(SMESH_CXXFLAGS) \
49         @CORBA_CXXFLAGS@ \
50         @CORBA_INCLUDES@ \
51         -I$(top_builddir)/idl
52
53 libSalomeIDLBLSURFPLUGIN_la_LDFLAGS = -no-undefined -version-info=0:0:0
54 libSalomeIDLBLSURFPLUGIN_la_LIBADD  = \
55         $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
56         $(SMESH_LDFLAGS) -lSalomeIDLSMESH \
57         $(GEOM_LDFLAGS) -lSalomeIDLGEOM \
58         @CORBA_LIBS@
59
60 # These variables defines the building process of CORBA files
61 OMNIORB_IDL         = @OMNIORB_IDL@
62 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
63 OMNIORB_IDLPYFLAGS  = @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 IDLPYFLAGS  = \
77         @IDLPYFLAGS@ \
78         -I$(KERNEL_ROOT_DIR)/idl/salome \
79         -I$(GEOM_ROOT_DIR)/idl/salome \
80         -I$(SMESH_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 # uninstall-local removes too much, but it works in distcheck
96 uninstall-local:
97         rm -rf $(DESTDIR)$(salomepythondir)/*
98
99 mostlyclean-local:
100         -rm -f *.hh *.cc .depidl
101
102 # we use cpp to generate dependencies between idl files.
103 # option x c tells the preprocessor to consider idl as a c file.
104 # if an idl is modified, all idl dependencies are rebuilt
105
106 .depidl: $(BASEIDL_FILES)
107         @echo "" > $@
108         @for dep in $^ dummy; do \
109           if [ $$dep != "dummy" ]; then \
110             echo Building dependencies for $$dep; \
111             $(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 $$dep 2>/dev/null | \
112             sed 's/\.o/\SK.cc/' >>$@; \
113           fi; \
114         done ;
115
116 -include .depidl