2003-05-12 21:09:12 +06:00
|
|
|
# -* Makefile *-
|
|
|
|
#
|
|
|
|
# Author : Patrick GOLDBRONN (CEA)
|
|
|
|
# Date : 29/06/2001
|
|
|
|
# $Header$
|
|
|
|
#
|
|
|
|
|
|
|
|
# source path
|
|
|
|
top_srcdir=@top_srcdir@
|
|
|
|
top_builddir=../..
|
|
|
|
srcdir=@srcdir@
|
|
|
|
VPATH=.:$(srcdir):${KERNEL_ROOT_DIR}/idl/salome
|
|
|
|
|
|
|
|
|
|
|
|
@COMMENCE@
|
|
|
|
|
|
|
|
# header files
|
|
|
|
EXPORT_HEADERS = \
|
|
|
|
GEOM_Client.hxx
|
|
|
|
|
|
|
|
# Libraries targets
|
|
|
|
|
2003-05-16 16:38:04 +06:00
|
|
|
LIB = libGEOMClient.la
|
2003-05-12 21:09:12 +06:00
|
|
|
LIB_SRC = GEOM_Client.cxx
|
|
|
|
LIB_SERVER_IDL = SALOME_Component.idl SALOMEDS.idl SALOME_Exception.idl GEOM_Shape.idl GEOM_Gen.idl
|
|
|
|
|
|
|
|
# Executables targets
|
|
|
|
BIN =
|
|
|
|
BIN_SRC =
|
|
|
|
BIN_CLIENT_IDL =
|
|
|
|
BIN_SERVER_IDL =
|
|
|
|
|
|
|
|
# additionnal information to compil and link file
|
|
|
|
CPPFLAGS += $(OCC_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
|
|
|
|
CXXFLAGS += $(OCC_CXXFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
|
2003-05-23 21:17:52 +06:00
|
|
|
LDFLAGS += $(OCC_KERNEL_LIBS) $(OCC_MODELER_LIBS) -L${KERNEL_ROOT_DIR}/lib/salome
|
2003-05-12 21:09:12 +06:00
|
|
|
|
|
|
|
|
|
|
|
@CONCLUDE@
|
|
|
|
|