mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-09 16:20:35 +05:00
44 lines
821 B
Makefile
44 lines
821 B
Makefile
# -* Makefile *-
|
|
#
|
|
# Author : Marc Tajchman (CEA)
|
|
# Date : 5/07/2001
|
|
# $Header$
|
|
#
|
|
|
|
# source path
|
|
top_srcdir=@top_srcdir@
|
|
top_builddir=../..
|
|
srcdir=@srcdir@
|
|
VPATH=.:$(srcdir):$(top_srcdir)/idl:$(top_builddir)/idl
|
|
|
|
|
|
@COMMENCE@
|
|
|
|
# Libraries targets
|
|
LIB = libGEOMPartition.la
|
|
LIB_SRC = Partition_Inter2d.cxx \
|
|
Partition_Inter3d.cxx \
|
|
Partition_Loop2d.cxx \
|
|
Partition_Loop3d.cxx \
|
|
Partition_Spliter.cxx
|
|
|
|
LIB_CLIENT_IDL =
|
|
LIB_SERVER_IDL =
|
|
|
|
# header files
|
|
EXPORT_HEADERS = Partition_Spliter.hxx \
|
|
Partition_Inter3d.hxx
|
|
|
|
# idl files
|
|
EXPORT_IDLS=
|
|
|
|
|
|
CPPFLAGS += $(OCC_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
|
|
CXXFLAGS += $(OCC_CXXFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
|
|
LDFLAGS += $(OCC_KERNEL_LIBS) $(OCC_MODELER_LIBS) -L${KERNEL_ROOT_DIR}/lib/salome
|
|
|
|
%_moc.cxx: %.h
|
|
$(MOC) $< -o $@
|
|
|
|
@CONCLUDE@
|