mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-17 02:58:35 +05:00
41 lines
776 B
Makefile
41 lines
776 B
Makefile
|
# -* 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
|
||
|
|
||
|
LIB = libGeometryClient.la
|
||
|
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
|
||
|
LDFLAGS += $(OCC_LIBS) -L${KERNEL_ROOT_DIR}/lib/salome
|
||
|
|
||
|
|
||
|
@CONCLUDE@
|
||
|
|