]> SALOME platform Git repositories - modules/paravis.git/blob - idl/Makefile.am
Salome HOME
Merge from BR_PARAVIS_DEV 29Dec09
[modules/paravis.git] / idl / Makefile.am
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 # This Makefile is responsible of generating the client and server
23 # implementation of IDL interfaces for both C++ and python usage.
24 # The building process of the C++ files is in charge of each source
25 # package and then is not manage here.
26 #
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 #Executable
30 bin_PROGRAMS = vtkWrapIDL 
31
32 dist_vtkWrapIDL_SOURCES = ${PVHOME}/src/vtkParse.tab.c vtkWrapIDL.c
33
34 vtkWrapIDL_CPPFLAGS = \
35         ${PARAVIEW_INCLUDES}
36
37 include $(srcdir)/wrap.am
38
39 BASEIDL_FILES = PARAVIS_Gen_Types.idl PARAVIS_Gen.idl 
40 BASEIDL_SK_FILES= PARAVIS_Gen_TypesSK.cc PARAVIS_GenSK.cc
41
42 # This variable defines the files to be installed
43 dist_salomeidl_DATA = $(BASEIDL_FILES) $(WRAP_IDL)
44
45 # PARAVIS idl common library
46 lib_LTLIBRARIES = libSalomeIDLPARAVIS.la
47
48 # Sources built from idl files
49 nodist_libSalomeIDLPARAVIS_la_SOURCES = $(BASEIDL_SK_FILES) $(WRAP_SK_FILES)
50
51 # header files must be exported: other modules have to use this library
52 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh) $(WRAP_IDL:%.idl=%.hh)
53
54 libSalomeIDLPARAVIS_la_CPPFLAGS =                       \
55         -I$(top_builddir)/salome_adm/unix       \
56         -I$(top_builddir)/idl                   \
57         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @KERNEL_CXXFLAGS@ 
58 libSalomeIDLPARAVIS_la_LDFLAGS = -no-undefined -version-info=0:0:0
59 libSalomeIDLPARAVIS_la_LIBADD  = @CORBA_LIBS@ 
60
61 # These variables defines the building process of CORBA files
62 OMNIORB_IDL         = @OMNIORB_IDL@
63 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
64 OMNIORB_IDLPYFLAGS  = @OMNIORB_IDLPYFLAGS@ -I$(KERNEL_ROOT_DIR)/idl/salome 
65 IDLCXXFLAGS = -bcxx @IDLCXXFLAGS@ -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome -I$(top_builddir)/salome_adm/unix
66 IDLPYFLAGS  = -bpythonIDL -p$(srcdir) -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome
67
68 # potential problem on parallel make on the following - multiple outputs
69 SUFFIXES = .idl .hh SK.cc
70 .idlSK.cc:
71         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
72 .idl.hh:
73         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
74
75 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%) $(WRAP_IDL)
76         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
77         ls $^ | while read file; do \
78           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
79         done
80
81 # uninstall-local removes too much, but it works in distcheck
82 uninstall-local:
83         rm -rf $(DESTDIR)$(salomepythondir)/*
84
85 mostlyclean-local: clean-idls
86
87 clean-idls:
88         @find . \( -name "*.hh" -or -name "*.cc" -or -name ".depidl" -or -name "*.idl" \) -exec rm -f {} \;
89
90 # we use cpp to generate dependencies between idl files.
91 # option x c tells the preprocessor to consider idl as a c file.
92 # if an idl is modified, all idl dependencies are rebuilt
93
94 .depidl: $(BASEIDL_FILES)
95         @echo "" > $@
96         @for dep in $^ dummy; do \
97           if [ $$dep != "dummy" ]; then \
98             echo Building dependencies for $$dep; \
99             $(CPP) $(C_DEPEND_FLAG) $(C_WRAP_IDL_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
100             sed 's/\.o/\SK.cc/' >>$@; \
101           fi; \
102         done ;
103
104 -include .depidl