Salome HOME
Remove uncessary libraries and dependences (for OCC6.0) from configuration
[modules/geom.git] / src / GEOM_I / Makefile.in
1 #  GEOM GEOM : implementaion of GEOM_Gen.idl
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 #
22 #
23 #
24 #  File   : Makefile.in
25 #  Author : Patrick GOLDBRONN (CEA)
26 #  Module : GEOM
27 #  $Header$
28
29 top_srcdir=@top_srcdir@
30 top_builddir=../..
31 srcdir=@srcdir@
32 VPATH=.:@srcdir@:@top_srcdir@/idl
33
34 @COMMENCE@
35
36 # Libraries targets
37
38 LIB = libGEOMEngine.la
39 LIB_SRC = \
40         GEOM_Object_i.cc \
41         GEOM_IOperations_i.cc \
42         GEOM_IBasicOperations_i.cc \
43         GEOM_IHealingOperations_i.cc \
44         GEOM_I3DPrimOperations_i.cc \
45         GEOM_IShapesOperations_i.cc \
46         GEOM_IBlocksOperations_i.cc \
47         GEOM_IBooleanOperations_i.cc \
48         GEOM_ICurvesOperations_i.cc \
49         GEOM_ILocalOperations_i.cc \
50         GEOM_IInsertOperations_i.cc \
51         GEOM_ITransformOperations_i.cc \
52         GEOM_IMeasureOperations_i.cc \
53         GEOM_IGroupOperations_i.cc \
54         GEOM_Gen_i.cc \
55         GEOM_DumpPython.cc
56
57 # SALOME_Component.idl
58 LIB_CLIENT_IDL = SALOMEDS.idl SALOMEDS_Attributes.idl SALOME_Component.idl SALOME_Exception.idl
59                  #SALOME_Exception.idl SALOME_GenericObj.idl
60
61 LIB_SERVER_IDL = GEOM_Gen.idl
62
63 # Executables targets
64 BIN = 
65 BIN_SRC = 
66 BIN_CLIENT_IDL = 
67 BIN_SERVER_IDL =
68
69 #This export required to compile GEOM_Superv_i.lo library
70 EXPORT_HEADERS = GEOM_Object_i.hh \
71                  GEOM_IOperations_i.hh \
72                  GEOM_IBasicOperations_i.hh \
73                  GEOM_IHealingOperations_i.hh \
74                  GEOM_I3DPrimOperations_i.hh \
75                  GEOM_IShapesOperations_i.hh \
76                  GEOM_IBlocksOperations_i.hh \
77                  GEOM_IBooleanOperations_i.hh \
78                  GEOM_ICurvesOperations_i.hh \
79                  GEOM_ILocalOperations_i.hh \
80                  GEOM_IInsertOperations_i.hh \
81                  GEOM_ITransformOperations_i.hh \
82                  GEOM_IMeasureOperations_i.hh \
83                  GEOM_IGroupOperations_i.hh \
84                  GEOM_Gen_i.hh
85
86 # additionnal information to compil and link file
87 CPPFLAGS += $(OCC_INCLUDES) $(BOOST_CPPFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
88 CXXFLAGS += $(OCC_INCLUDES) $(BOOST_CPPFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
89 LDFLAGS  += -lGEOMArchimede -lGEOMbasic -lGEOMimpl -lGEOMSketcher \
90             $(CAS_DATAEXCHANGE) $(CAS_LDPATH) -lTKFillet -lTKOffset \
91             -L${KERNEL_ROOT_DIR}/lib/salome -lSalomeNS -lSalomeContainer -lSalomeGenericObj -lTOOLSDS
92
93 # additional file to be cleaned
94 MOSTLYCLEAN =
95 CLEAN =
96 DISTCLEAN =
97
98 @CONCLUDE@