]> SALOME platform Git repositories - plugins/gmshplugin.git/blob - idl/Makefile.am
Salome HOME
a09c7ada283abafaed8f6322744175ca0fc77472
[plugins/gmshplugin.git] / idl / Makefile.am
1 # Copyright (C) 2012-2013  ALNEOS
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.alneos.com/ or email : contact@alneos.fr
18 #
19 include $(top_srcdir)/adm_local/unix/make_common_starter.am
20
21 BASEIDL_FILES= GMSHPlugin_Algorithm.idl
22
23 BASEIDL_FILES_PY=$(BASEIDL_FILES:%.idl=%_idl.py)
24
25 # This variable defines the files to be installed
26 dist_salomeidl_DATA = $(BASEIDL_FILES)
27
28 # GUI idl common library
29 lib_LTLIBRARIES = libSalomeIDLGMSHPLUGIN.la
30
31 # Sources built from idl files
32 nodist_libSalomeIDLGMSHPLUGIN_la_SOURCES = GMSHPlugin_AlgorithmSK.cc
33
34 # header files must be exported: other modules have to use this library
35 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
36
37 libSalomeIDLGMSHPLUGIN_la_CPPFLAGS = \
38     $(KERNEL_CXXFLAGS) \
39     $(GEOM_CXXFLAGS) \
40     $(SMESH_CXXFLAGS) \
41     @CORBA_CXXFLAGS@ \
42     @CORBA_INCLUDES@ \
43     -I$(top_builddir)/idl
44
45 libSalomeIDLGMSHPLUGIN_la_LDFLAGS = -no-undefined -version-info=0:0:0
46 libSalomeIDLGMSHPLUGIN_la_LIBADD  = \
47     $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
48     $(SMESH_LDFLAGS) -lSalomeIDLSMESH \
49     $(GEOM_LDFLAGS) -lSalomeIDLGEOM \
50     @CORBA_LIBS@
51
52 # These variables defines the building process of CORBA files
53 OMNIORB_IDL         = @OMNIORB_IDL@
54 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
55 OMNIORB_IDLPYFLAGS  = @OMNIORB_IDLPYFLAGS@ \
56     -I$(top_builddir)/idl/salome \
57     -I$(KERNEL_ROOT_DIR)/idl/salome \
58     -I$(GEOM_ROOT_DIR)/idl/salome \
59     -I$(SMESH_ROOT_DIR)/idl/salome
60
61 IDLCXXFLAGS = \
62     -bcxx \
63     @IDLCXXFLAGS@ \
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 IDLPYFLAGS  = \
69     @IDLPYFLAGS@ \
70     -I$(KERNEL_ROOT_DIR)/idl/salome \
71     -I$(GEOM_ROOT_DIR)/idl/salome \
72     -I$(SMESH_ROOT_DIR)/idl/salome
73
74 # potential problem on parallel make on the following - multiple outputs
75 SUFFIXES = .idl .hh SK.cc
76 .idlSK.cc:
77         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
78 .idl.hh:
79         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
80
81 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
82         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
83         ls $^ | while read file; do \
84           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
85         done
86
87 # we want to remove only staff generated for IDL files and nothing more
88 uninstall-local:
89         @for modulen in GMSHPlugin ; do \
90           test -d $(DESTDIR)$(salomepythondir)/$${modulen} && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen} ; \
91           test -d $(DESTDIR)$(salomepythondir)/$${modulen}__POA && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}__POA" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen}__POA ; \
92         done ; \
93         for filen in $(BASEIDL_FILES_PY) ; do \
94           echo "Removing $(DESTDIR)$(salomepythondir)/$${filen}" && rm -f $(DESTDIR)$(salomepythondir)/$${filen}* ; \
95         done
96
97 mostlyclean-local:
98         -rm -f *.hh *.cc .depidl
99
100 # we use cpp to generate dependencies between idl files.
101 # option x c tells the preprocessor to consider idl as a c file.
102 # if an idl is modified, all idl dependencies are rebuilt
103
104 .depidl: $(BASEIDL_FILES)
105         @echo "" > $@
106         @for dep in $^ dummy; do \
107           if [ $$dep != "dummy" ]; then \
108             echo Building dependencies for $$dep; \
109             $(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 | \
110             sed 's/\.o/\SK.cc/' >>$@; \
111           fi; \
112         done ;
113
114 -include .depidl