Salome HOME
Porting to CAS-6.2.sp1
[modules/filter.git] / idl / Makefile.in
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 # generate dependencies for idl file :
21 #
22
23 # source path
24 top_srcdir=@top_srcdir@
25 top_builddir=..
26 srcdir=@srcdir@
27 VPATH=.:${KERNEL_ROOT_DIR}/idl/salome
28
29 @COMMENCE@
30
31 IDL_FILES = \
32   FILTER_Gen.idl
33
34 PY_CLIENT_IDL = $(IDL_FILES)
35
36 # we copy all idl file in $(top_builddir)/idl
37 inc: $(top_builddir)/idl/salome $(IDL_FILES:%=$(top_builddir)/idl/salome/%)
38
39 $(top_builddir)/idl/salome:
40         mkdir $@
41
42 $(IDL_FILES:%=$(top_builddir)/idl/salome/%):$(IDL_FILES:%=$(top_srcdir)/idl/%)
43 #       $(CP) $< $@
44         cp -f $^ $(top_builddir)/idl/salome
45
46
47 lib: pyidl
48
49 PYTHON_BUILD_SITE=$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/python$(PYTHON_VERSION)/site-packages/@PACKAGE@
50
51 pyidl: $(PYTHON_BUILD_SITE) $(IDL_FILES:%.idl=$(PYTHON_BUILD_SITE)/%_idl.py)
52
53 $(PYTHON_BUILD_SITE):
54         $(INSTALL) -d  $@
55
56 $(PYTHON_BUILD_SITE)/%_idl.py: $(top_builddir)/idl/salome/%.idl
57         $(OMNIORB_IDL) $(OMNIORB_IDLPYFLAGS) -C$(PYTHON_BUILD_SITE) $<
58
59
60 # install python client (generated from idl file
61 install: install-pyidl install-idl
62
63 # create directory $(idldir) and copy idl files into it
64 install-idl: $(IDL_FILES:%=$(top_builddir)/idl/salome/%)
65         $(INSTALL) -d  $(idldir)
66         $(INSTALL_DATA) $^ $(idldir)
67
68
69 install-pyidl: $(IDL_FILES:%=$(top_builddir)/idl/salome/%)
70         $(INSTALL) -d  $(PYTHON_SITE_INSTALL)
71         @for file in $^ dummy; do \
72           if [ $$file != "dummy" ]; then \
73             $(OMNIORB_IDL) $(OMNIORB_IDLPYFLAGS) -C$(PYTHON_SITE_INSTALL) $$file ; \
74           fi ; \
75         done ;
76
77 #@ CONCLUDE @
78
79 cleandep:
80         -$(RM) .dep*
81
82 distclean:
83         -$(RM) *.py
84         -$(RM) $(IDL_FILES:%=$(top_builddir)/idl/salome/%)
85         -$(RM) Makefile
86