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