Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / GEOM_SWIG_WITHIHM / Makefile.am
1 # Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
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 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
21 #  File   : Makefile.in
22 #  Author : Nicolas REJNERI, Paul RASCLE
23 #  Modified by : Alexander BORODIN (OCN) - autotools usage
24 #  Module : GEOM
25 #  $Header$
26 # Libraries targets
27 #
28 include $(top_srcdir)/adm_local/unix/make_common_starter.am
29
30 # ===============================================================
31 # Swig targets
32 # ===============================================================
33 # (cf. http://www.geocities.com/foetsch/python/swig_linux.htm)
34 #
35 # Step 1: build the wrapping source files with swig
36 #
37 # libSALOME_LifeCycleCORBA.i -- swig --> swig_wrap.cpp
38 #                                        libSALOME_Swig.py
39 #
40 # Step 2: build the dynamic library from cpp built source files and
41 #         dependant libraries.
42 #
43 # swig_wrap.cpp -- gcc --> swig_wrap.o    |-- link --> _libSALOME_Swig.la
44 #                          +              |
45 #                          dependant libs |
46 #
47 # The file libGEOM_Swig.py will be installed to the
48 # <prefix>/bin/salome directory.
49 # The library _libGEOM_Swig.so will be installed to the 
50 # <prefix>/lib/python<version>/site-package/salome directory.
51 #
52
53 SWIG_FLAGS    = @SWIG_FLAGS@ -I$(srcdir) -I$(srcdir)/../GEOMGUI
54 SWIG_SOURCES  = libGEOM_Swig.i
55
56 salomepython_PYTHON = libGEOM_Swig.py
57 salomepyexec_LTLIBRARIES = _libGEOM_Swig.la
58
59 libGEOM_Swig.py: swig_wrap.cpp
60 BUILT_SOURCES = swig_wrap.cpp
61 _libGEOM_Swig_la_SOURCES        = $(SWIG_SOURCES)
62 nodist__libGEOM_Swig_la_SOURCES = $(BUILT_SOURCES)
63
64 salomeinclude_HEADERS           = $(SWIG_SOURCES)
65
66 _libGEOM_Swig_la_CPPFLAGS =             \
67         $(QT_INCLUDES)                  \
68         $(PYTHON_INCLUDES)              \
69         $(CAS_CPPFLAGS)                 \
70         $(VTK_INCLUDES)                 \
71         $(OGL_INCLUDES)                 \
72         $(KERNEL_CXXFLAGS)              \
73         $(GUI_CXXFLAGS)                 \
74         $(CORBA_CXXFLAGS)               \
75         $(CORBA_INCLUDES)               \
76         -I$(srcdir)/../GEOMGUI          \
77         -I$(top_builddir)/idl
78
79 _libGEOM_Swig_la_LDFLAGS = -module
80 _libGEOM_Swig_la_LIBADD  =              \
81         ../GEOMGUI/libGEOM.la           \
82         $(PYTHON_LIBS)
83
84 swig_wrap.cpp : $(SWIG_SOURCES)
85         $(SWIG) $(SWIG_FLAGS) -o $@ $<
86
87 CLEANFILES = swig_wrap.cpp libGEOM_Swig.py
88