geom/src/GEOM_SWIG/Makefile.in

82 lines
2.1 KiB
Makefile
Raw Normal View History

2003-07-09 20:33:44 +06:00
# GEOM GEOM_SWIG : binding of C++ omplementaion with Python
#
# Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2004-12-01 15:39:14 +05:00
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
2003-07-09 20:33:44 +06:00
#
#
#
# File : Makefile.in
# Author : Nicolas REJNERI, Paul RASCLE
# Module : GEOM
2003-05-12 21:24:23 +06:00
# $Header$
top_srcdir=@top_srcdir@
2003-07-10 20:28:33 +06:00
top_builddir=../..
2003-05-12 21:24:23 +06:00
srcdir=@srcdir@
2003-07-09 20:33:44 +06:00
VPATH=.:@srcdir@:@top_srcdir@/idl
2003-05-12 21:24:23 +06:00
@COMMENCE@
# Libraries targets
2003-05-16 16:38:04 +06:00
LIB = libGEOM_Swigcmodule.la
2004-12-01 15:39:14 +05:00
LIB_SRC =
2003-05-12 21:24:23 +06:00
2003-05-19 13:19:45 +06:00
SWIG_DEF = libGEOM_Swig.i
2004-12-01 15:39:14 +05:00
EXPORT_PYSCRIPTS = \
libGEOM_Swig.py \
geompy.py \
batchmode_geompy.py \
GEOM_Spanner.py \
GEOM_blocks.py \
GEOM_example.py \
GEOM_example2.py \
GEOM_example3.py \
GEOM_example4.py \
GEOM_example5.py \
GEOM_moteur.py \
GEOM_TestAll.py \
GEOM_TestOthers.py \
GEOM_TestHealing.py \
GEOM_TestMeasures.py \
GEOM_usinggeom.py \
GEOM_Partition1.py \
GEOM_Partition2.py \
GEOM_Partition3.py \
GEOM_Partition4.py \
GEOM_Partition5.py \
GEOM_Sketcher.py
2003-05-12 21:24:23 +06:00
LIB_CLIENT_IDL = SALOMEDS.idl \
SALOMEDS_Attributes.idl \
SALOME_Exception.idl \
GEOM_Gen.idl \
2004-12-01 15:39:14 +05:00
SALOME_Component.idl \
SALOME_GenericObj.idl
2003-05-12 21:24:23 +06:00
2003-07-17 13:14:07 +06:00
EXPORT_SHAREDPYSCRIPTS=\
GEOM_shared_modules.py
2003-05-12 21:24:23 +06:00
CPPFLAGS+=$(QT_INCLUDES) $(PYTHON_INCLUDES) $(OCC_INCLUDES) $(VTK_INCLUDES) $(OGL_INCLUDES) -DHAVE_CONFIG_H
LIBS+= $(PYTHON_LIBS)
LDFLAGS+= -lGEOMGUI
2003-05-12 21:24:23 +06:00
@CONCLUDE@