mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-09 16:20:35 +05:00
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
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 = libGeometryDS.la
|
||
|
LIB_SRC = GEOMDS_Application.cxx \
|
||
|
GEOMDS_Commands.cxx \
|
||
|
GEOMDS_Explorer.cxx \
|
||
|
GEOMDS_DataMapIteratorOfDataMapOfIntegerTransient_0.cxx \
|
||
|
GEOMDS_DataMapNodeOfDataMapOfIntegerTransient_0.cxx \
|
||
|
GEOMDS_DataMapOfIntegerTransient_0.cxx
|
||
|
LIB_CLIENT_IDL =
|
||
|
LIB_SERVER_IDL =
|
||
|
|
||
|
# Executables targets
|
||
|
BIN =
|
||
|
BIN_SRC =
|
||
|
BIN_CLIENT_IDL =
|
||
|
BIN_SERVER_IDL =
|
||
|
|
||
|
# header files
|
||
|
EXPORT_HEADERS= GEOMDS_Application.hxx \
|
||
|
GEOMDS_DataMapOfIntegerTransient.hxx \
|
||
|
Handle_GEOMDS_DataMapNodeOfDataMapOfIntegerTransient.hxx \
|
||
|
Handle_GEOMDS_Application.hxx \
|
||
|
GEOMDS_Commands.hxx \
|
||
|
GEOMDS_Explorer.hxx
|
||
|
|
||
|
# 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
|
||
|
|
||
|
# additional file to be cleaned
|
||
|
MOSTLYCLEAN =
|
||
|
CLEAN =
|
||
|
DISTCLEAN =
|
||
|
|
||
|
@CONCLUDE@
|
||
|
|