mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-04-30 07:20:48 +05:00
42 lines
922 B
Makefile
42 lines
922 B
Makefile
![]() |
# -* Makefile *-
|
||
|
#
|
||
|
# Author : Patrick GOLDBRONN (CEA)
|
||
|
# Date : 29/06/2001
|
||
|
# $Header$
|
||
|
#
|
||
|
|
||
|
# source path
|
||
|
top_srcdir=@top_srcdir@
|
||
|
top_builddir=../..
|
||
|
srcdir=@srcdir@
|
||
|
VPATH=.:$(srcdir):$(top_srcdir)/idl:$(top_builddir)/idl
|
||
|
|
||
|
@COMMENCE@
|
||
|
|
||
|
# Libraries targets
|
||
|
|
||
|
LIB = libGeometryEngine.la
|
||
|
LIB_SRC = GEOM_Shape_i.cc GEOM_Gen_i.cc
|
||
|
LIB_SERVER_IDL = SALOME_Component.idl SALOMEDS.idl SALOME_Exception.idl GEOM_Gen.idl GEOM_Shape.idl
|
||
|
|
||
|
# Executables targets
|
||
|
BIN =
|
||
|
BIN_SRC =
|
||
|
BIN_CLIENT_IDL =
|
||
|
BIN_SERVER_IDL =
|
||
|
|
||
|
EXPORT_HEADERS =
|
||
|
|
||
|
# 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) -lGeometryDS -lSalomeDS -lSalomeNS -lSalomeContainer -lGeometryPartition -lGeometryArchimede -L${KERNEL_ROOT_DIR}/lib/salome
|
||
|
|
||
|
# additional file to be cleaned
|
||
|
MOSTLYCLEAN =
|
||
|
CLEAN =
|
||
|
DISTCLEAN =
|
||
|
|
||
|
@CONCLUDE@
|
||
|
|