Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / GEOM_SWIG_WITHIHM / Makefile.am
1 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
2 #
3 #  Copyright (C) 2003  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 #
23 #
24 #  File   : Makefile.in
25 #  Author : Nicolas REJNERI, Paul RASCLE
26 #  Modified by : Alexander BORODIN (OCN) - autotools usage
27 #  Module : GEOM
28 #  $Header$
29
30
31 # Libraries targets
32
33 include $(top_srcdir)/adm_local/unix/make_common_starter.am
34
35 # ===============================================================
36 # Swig targets
37 # ===============================================================
38 # (cf. http://www.geocities.com/foetsch/python/swig_linux.htm)
39 #
40 # Step 1: build the wrapping source files with swig
41 #
42 # libSALOME_LifeCycleCORBA.i -- swig --> swig_wrap.cpp
43 #                                        libSALOME_Swig.py
44 #
45 # Step 2: build the dynamic library from cpp built source files and
46 #         dependant libraries.
47 #
48 # swig_wrap.cpp -- gcc --> swig_wrap.o    |-- link --> _libSALOME_Swig.la
49 #                          +              |
50 #                          dependant libs |
51 #
52 # The file libSALOME_Swigcmodule.py will be installed in
53 # <prefix>/lib/python<version>/site-package/salome.
54 # The library will be installed in the same place.
55 #
56
57 # this option puts it to dist
58 #BUILT_SOURCES = swig_wrap.cpp
59
60 SWIG_FLAGS    = \
61         @SWIG_FLAGS@ \
62         -I$(srcdir) \
63         -I$(srcdir)/../GEOMGUI
64
65 SWIG_SOURCES  = libGEOM_Swig.i
66
67 # Libraries targets
68 lib_LTLIBRARIES = libGEOM_Swigcmodule.la
69
70 nodist_pkgpython_DATA = libGEOM_Swig.py
71 libGEOM_Swig.py: swig_wrap.cpp
72
73 libGEOM_Swigcmodule_la_SOURCES = \
74         $(BUILT_SOURCES) \
75         $(SWIG_SOURCES)
76
77 nodist_libGEOM_Swigcmodule_la_SOURCES = swig_wrap.cpp
78
79 #LIB_CLIENT_IDL = SALOMEDS.idl \
80 #                 SALOMEDS_Attributes.idl \
81 #                SALOME_Exception.idl \
82 #                GEOM_Gen.idl \
83 #                SALOME_Component.idl \
84 #                SALOME_GenericObj.idl
85
86 libGEOM_Swigcmodule_la_CPPFLAGS = \
87         $(QT_INCLUDES) \
88         $(PYTHON_INCLUDES) \
89         $(CAS_CPPFLAGS) \
90         $(VTK_INCLUDES) \
91         $(OGL_INCLUDES) \
92         $(KERNEL_CXXFLAGS) \
93         $(GUI_CXXFLAGS) \
94         $(CORBA_CXXFLAGS) \
95         $(CORBA_INCLUDES) \
96         -I$(srcdir)/../GEOMGUI \
97         -I$(top_builddir)/idl \
98         -I$(top_builddir)/salome_adm/unix
99
100 libGEOM_Swigcmodule_la_LDFLAGS = \
101         ../GEOMGUI/libGEOM.la
102
103
104 libGEOM_Swigcmodule_la_LIBADD  = \
105         $(PYTHON_LIBS)
106
107 swig_wrap.cpp : $(SWIG_SOURCES)
108         $(SWIG) $(SWIG_FLAGS) -o $@ $<
109
110 CLEANFILES = \
111         swig_wrap.cpp
112
113 #
114 # ===============================================================
115 # Files to be installed
116 # ===============================================================
117 #
118
119 # Scripts to be installed.
120 dist_salomescript_DATA= \
121         libGEOM_Swig.py
122
123 install-exec-hook:\
124         $(libdir)/_libGEOM_Swig.so
125
126 $(libdir)/_libGEOM_Swig.so:
127         ( cd $(libdir); ln -sf libGEOM_Swigcmodule.so _libGEOM_Swig.so; )