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