2003-05-12 21:09:12 +06:00
|
|
|
# -* 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
|
|
|
|
|
2003-05-16 16:38:04 +06:00
|
|
|
LIB = libGEOMDS.la
|
2003-05-12 21:09:12 +06:00
|
|
|
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
|
2003-05-16 16:38:04 +06:00
|
|
|
LDFLAGS += $(OCC_LIBS)
|
2003-05-12 21:09:12 +06:00
|
|
|
|
|
|
|
# additional file to be cleaned
|
|
|
|
MOSTLYCLEAN =
|
|
|
|
CLEAN =
|
|
|
|
DISTCLEAN =
|
|
|
|
|
|
|
|
@CONCLUDE@
|
|
|
|
|