geom/src/PARTITION/Makefile.in

44 lines
821 B
Makefile
Raw Normal View History

2003-05-12 21:24:23 +06:00
# -* 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
2003-05-16 16:38:04 +06:00
LIB = libGEOMPartition.la
2003-05-12 21:24:23 +06:00
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
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:24:23 +06:00
%_moc.cxx: %.h
$(MOC) $< -o $@
@CONCLUDE@