mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-02-01 01:50:33 +05:00
38 lines
811 B
Makefile
38 lines
811 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 = libGEOMSketcher.la
|
|
LIB_SRC = GEOM_Sketcher.cxx
|
|
LIB_CLIENT_IDL = SALOME_Component.idl SALOMEDS.idl SALOME_Exception.idl GEOM_Shape.idl GEOM_Gen.idl
|
|
|
|
# header files
|
|
EXPORT_HEADERS= GEOM_Sketcher.h \
|
|
GEOM_SketcherStatus.h
|
|
|
|
# additionnal information to compil and link file
|
|
CPPFLAGS += $(OCC_INCLUDES) $(QT_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@
|
|
|