mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-25 08:50:36 +05:00
Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
This commit is contained in:
parent
53725279b6
commit
63b2d29eae
@ -19,6 +19,14 @@
|
|||||||
#
|
#
|
||||||
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# The following is to avoid PACKAGE_... env variable
|
||||||
|
# redefinition compilation warnings
|
||||||
|
# ============================================================
|
||||||
|
AM_CXXFLAGS = @KERNEL_CXXFLAGS@ -include SALOMEconfig.h
|
||||||
|
AM_CPPFLAGS = @KERNEL_CXXFLAGS@ -include SALOMEconfig.h
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# This file defines the common definitions used in several
|
# This file defines the common definitions used in several
|
||||||
# Makefile. This file must be included, if needed, by the file
|
# Makefile. This file must be included, if needed, by the file
|
||||||
|
@ -53,31 +53,14 @@ ABS_CONF_DIR=`pwd`
|
|||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
|
|
||||||
mkdir -p salome_adm/unix/config_files
|
|
||||||
#cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
|
|
||||||
#cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
|
|
||||||
|
|
||||||
cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
|
|
||||||
|
|
||||||
#cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
|
|
||||||
|
|
||||||
# remove KERNEL deprecated configure files
|
|
||||||
#for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
|
|
||||||
# check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
|
|
||||||
# check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
|
|
||||||
# do
|
|
||||||
# rm -f salome_adm/unix/config_files/${deprecated}
|
|
||||||
# done
|
|
||||||
|
|
||||||
|
|
||||||
# ____________________________________________________________________
|
# ____________________________________________________________________
|
||||||
# aclocal creates the aclocal.m4 file from the standard macro and the
|
# aclocal creates the aclocal.m4 file from the standard macro and the
|
||||||
# custom macro embedded in the directory salome_adm/unix/config_files
|
# custom macro embedded in the directory adm_local/unix/config_files
|
||||||
# and KERNEL config_files directory.
|
# and KERNEL salome_adm/unix/config_files directory.
|
||||||
# output:
|
# output:
|
||||||
# aclocal.m4
|
# aclocal.m4
|
||||||
# autom4te.cache (directory)
|
# autom4te.cache (directory)
|
||||||
echo "====================================================== aclocal"
|
echo "======================================================= aclocal"
|
||||||
|
|
||||||
aclocal -I adm_local/unix/config_files \
|
aclocal -I adm_local/unix/config_files \
|
||||||
-I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files || exit 1
|
-I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files || exit 1
|
||||||
@ -88,10 +71,10 @@ aclocal -I adm_local/unix/config_files \
|
|||||||
# version. The files are created in the directory specified with the
|
# version. The files are created in the directory specified with the
|
||||||
# AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
|
# AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
|
||||||
# output:
|
# output:
|
||||||
# salome_adm/unix/config_files/config.guess
|
# adm_local/unix/config_files/config.guess
|
||||||
# salome_adm/unix/config_files/config.sub
|
# adm_local/unix/config_files/config.sub
|
||||||
# salome_adm/unix/config_files/ltmain.sh
|
# adm_local/unix/config_files/ltmain.sh
|
||||||
#echo "====================================================== libtoolize"
|
echo "==================================================== libtoolize"
|
||||||
|
|
||||||
libtoolize --force --copy --automake || exit 1
|
libtoolize --force --copy --automake || exit 1
|
||||||
|
|
||||||
@ -111,11 +94,11 @@ autoconf
|
|||||||
# AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
|
# AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
|
||||||
# creates the Makefile.in files from the Makefile.am files.
|
# creates the Makefile.in files from the Makefile.am files.
|
||||||
# output:
|
# output:
|
||||||
# salome_adm/unix/config_files/compile
|
# adm_local/unix/config_files/compile
|
||||||
# salome_adm/unix/config_files/depcomp
|
# adm_local/unix/config_files/depcomp
|
||||||
# salome_adm/unix/config_files/install-sh
|
# adm_local/unix/config_files/install-sh
|
||||||
# salome_adm/unix/config_files/missing
|
# adm_local/unix/config_files/missing
|
||||||
# salome_adm/unix/config_files/py-compile
|
# adm_local/unix/config_files/py-compile
|
||||||
# Makefile.in (from Makefile.am)
|
# Makefile.in (from Makefile.am)
|
||||||
echo "====================================================== automake"
|
echo "====================================================== automake"
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
# Created from configure.in.base
|
# Created from configure.in.base
|
||||||
#
|
#
|
||||||
AC_INIT([Salome2 Project GEOM module], [5.1.2], [webmaster.salome@opencascade.com], [SalomeGEOM])
|
AC_INIT([Salome2 Project GEOM module], [5.1.2], [webmaster.salome@opencascade.com], [SalomeGEOM])
|
||||||
AC_CONFIG_AUX_DIR(salome_adm/unix/config_files)
|
AC_CONFIG_AUX_DIR(adm_local/unix/config_files)
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
AC_CANONICAL_TARGET
|
AC_CANONICAL_TARGET
|
||||||
AM_INIT_AUTOMAKE([tar-pax -Wno-portability])
|
AM_INIT_AUTOMAKE([tar-pax -Wno-portability])
|
||||||
@ -108,7 +108,7 @@ dnl Fix up the INSTALL macro if it s a relative path. We want the
|
|||||||
dnl full-path to the binary instead.
|
dnl full-path to the binary instead.
|
||||||
case "$INSTALL" in
|
case "$INSTALL" in
|
||||||
*install-sh*)
|
*install-sh*)
|
||||||
INSTALL='\${ROOT_BUILDDIR}'/salome_adm/unix/config_files/install-sh
|
INSTALL='\${ROOT_BUILDDIR}'/adm_local/unix/config_files/install-sh
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -374,7 +374,6 @@ echo
|
|||||||
# autoscan, the Makefile list is generated in the output file configure.scan.
|
# autoscan, the Makefile list is generated in the output file configure.scan.
|
||||||
# This could be helpfull to update de configuration.
|
# This could be helpfull to update de configuration.
|
||||||
AC_OUTPUT([ \
|
AC_OUTPUT([ \
|
||||||
salome_adm/unix/SALOMEconfig.h \
|
|
||||||
adm_local/Makefile \
|
adm_local/Makefile \
|
||||||
adm_local/cmake_files/Makefile \
|
adm_local/cmake_files/Makefile \
|
||||||
adm_local/unix/Makefile \
|
adm_local/unix/Makefile \
|
||||||
|
@ -41,7 +41,6 @@ nodist_libSalomeIDLGEOM_la_SOURCES = GEOM_GenSK.cc GEOM_SupervSK.cc
|
|||||||
nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
|
nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
|
||||||
|
|
||||||
libSalomeIDLGEOM_la_CPPFLAGS = \
|
libSalomeIDLGEOM_la_CPPFLAGS = \
|
||||||
-I$(top_builddir)/salome_adm/unix \
|
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl \
|
||||||
@CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @KERNEL_CXXFLAGS@
|
@CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @KERNEL_CXXFLAGS@
|
||||||
libSalomeIDLGEOM_la_LDFLAGS = -no-undefined -version-info=0:0:0
|
libSalomeIDLGEOM_la_LDFLAGS = -no-undefined -version-info=0:0:0
|
||||||
@ -51,7 +50,7 @@ libSalomeIDLGEOM_la_LIBADD = $(STDLIB) @CORBA_LIBS@ $(KERNEL_LDFLAGS) -lSalomeI
|
|||||||
OMNIORB_IDL = @OMNIORB_IDL@
|
OMNIORB_IDL = @OMNIORB_IDL@
|
||||||
OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
|
OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
|
||||||
OMNIORB_IDLPYFLAGS = @OMNIORB_IDLPYFLAGS@ -I$(top_builddir)/idl/salome -I$(KERNEL_ROOT_DIR)/idl/salome
|
OMNIORB_IDLPYFLAGS = @OMNIORB_IDLPYFLAGS@ -I$(top_builddir)/idl/salome -I$(KERNEL_ROOT_DIR)/idl/salome
|
||||||
IDLCXXFLAGS = -bcxx @IDLCXXFLAGS@ -I$(top_builddir)/idl/salome -I$(KERNEL_ROOT_DIR)/idl/salome -I$(top_builddir)/salome_adm/unix
|
IDLCXXFLAGS = -bcxx @IDLCXXFLAGS@ -I$(top_builddir)/idl/salome -I$(KERNEL_ROOT_DIR)/idl/salome
|
||||||
IDLPYFLAGS = @IDLPYFLAGS@ -I$(KERNEL_ROOT_DIR)/idl/salome
|
IDLPYFLAGS = @IDLPYFLAGS@ -I$(KERNEL_ROOT_DIR)/idl/salome
|
||||||
|
|
||||||
# potential problem on parallel make on the following - multiple outputs
|
# potential problem on parallel make on the following - multiple outputs
|
||||||
|
@ -94,8 +94,7 @@ libBasicGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMClient \
|
-I$(srcdir)/../GEOMClient \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
|
|
||||||
libBasicGUI_la_LDFLAGS = \
|
libBasicGUI_la_LDFLAGS = \
|
||||||
|
@ -77,8 +77,7 @@ libBlocksGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libBlocksGUI_la_LDFLAGS = \
|
libBlocksGUI_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
@ -68,8 +68,7 @@ libBooleanGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libBooleanGUI_la_LDFLAGS = \
|
libBooleanGUI_la_LDFLAGS = \
|
||||||
../GEOMBase/libGEOMBase.la
|
../GEOMBase/libGEOMBase.la
|
||||||
|
@ -80,8 +80,7 @@ libBuildGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libBuildGUI_la_LDFLAGS = \
|
libBuildGUI_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
@ -53,8 +53,7 @@ libDisplayGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../OBJECT \
|
-I$(srcdir)/../OBJECT \
|
||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMClient \
|
-I$(srcdir)/../GEOMClient \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libDisplayGUI_la_LDFLAGS = \
|
libDisplayGUI_la_LDFLAGS = \
|
||||||
../GEOMGUI/libGEOM.la \
|
../GEOMGUI/libGEOM.la \
|
||||||
|
@ -87,8 +87,7 @@ libEntityGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(srcdir)/../SKETCHER \
|
-I$(srcdir)/../SKETCHER \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libEntityGUI_la_LDFLAGS = \
|
libEntityGUI_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
@ -71,8 +71,7 @@ libGEOMbasic_la_CPPFLAGS = \
|
|||||||
$(CAS_CPPFLAGS) \
|
$(CAS_CPPFLAGS) \
|
||||||
$(KERNEL_CXXFLAGS) \
|
$(KERNEL_CXXFLAGS) \
|
||||||
$(BOOST_CPPFLAGS) \
|
$(BOOST_CPPFLAGS) \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOMbasic_la_LDFLAGS = \
|
libGEOMbasic_la_LDFLAGS = \
|
||||||
$(CORBA_LIBS) \
|
$(CORBA_LIBS) \
|
||||||
|
@ -67,8 +67,7 @@ libGEOMBase_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMGUI \
|
-I$(srcdir)/../GEOMGUI \
|
||||||
-I$(srcdir)/../DlgRef \
|
-I$(srcdir)/../DlgRef \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOMBase_la_LDFLAGS = \
|
libGEOMBase_la_LDFLAGS = \
|
||||||
../../idl/libSalomeIDLGEOM.la \
|
../../idl/libSalomeIDLGEOM.la \
|
||||||
|
@ -46,8 +46,7 @@ libGEOMClient_la_CPPFLAGS = \
|
|||||||
$(CORBA_INCLUDES) \
|
$(CORBA_INCLUDES) \
|
||||||
$(CAS_CPPFLAGS) \
|
$(CAS_CPPFLAGS) \
|
||||||
$(KERNEL_CXXFLAGS) \
|
$(KERNEL_CXXFLAGS) \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOMClient_la_LDFLAGS = \
|
libGEOMClient_la_LDFLAGS = \
|
||||||
../../idl/libSalomeIDLGEOM.la \
|
../../idl/libSalomeIDLGEOM.la \
|
||||||
|
@ -62,8 +62,7 @@ libGEOMFiltersSelection_la_CPPFLAGS = \
|
|||||||
$(CORBA_CXXFLAGS) \
|
$(CORBA_CXXFLAGS) \
|
||||||
$(CORBA_INCLUDES) \
|
$(CORBA_INCLUDES) \
|
||||||
-I$(srcdir)/../GEOMClient \
|
-I$(srcdir)/../GEOMClient \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOMFiltersSelection_la_LDFLAGS = \
|
libGEOMFiltersSelection_la_LDFLAGS = \
|
||||||
$(QT_MT_LIBS) \
|
$(QT_MT_LIBS) \
|
||||||
|
@ -76,8 +76,7 @@ libGEOM_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(srcdir)/../GEOMClient \
|
-I$(srcdir)/../GEOMClient \
|
||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOM_la_LDFLAGS = \
|
libGEOM_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
@ -218,8 +218,7 @@ libGEOMimpl_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMAlgo \
|
-I$(srcdir)/../GEOMAlgo \
|
||||||
-I$(srcdir)/../SKETCHER \
|
-I$(srcdir)/../SKETCHER \
|
||||||
-I$(srcdir)/../ARCHIMEDE \
|
-I$(srcdir)/../ARCHIMEDE \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOMimpl_la_LDFLAGS = \
|
libGEOMimpl_la_LDFLAGS = \
|
||||||
../GEOM/libGEOMbasic.la \
|
../GEOM/libGEOMbasic.la \
|
||||||
|
@ -69,8 +69,7 @@ libGEOMToolsGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMGUI \
|
-I$(srcdir)/../GEOMGUI \
|
||||||
-I$(srcdir)/../GEOMClient \
|
-I$(srcdir)/../GEOMClient \
|
||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOMToolsGUI_la_LDFLAGS = \
|
libGEOMToolsGUI_la_LDFLAGS = \
|
||||||
../GEOMBase/libGEOMBase.la \
|
../GEOMBase/libGEOMBase.la \
|
||||||
|
@ -81,8 +81,7 @@ libGEOMEngine_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMAlgo \
|
-I$(srcdir)/../GEOMAlgo \
|
||||||
-I$(srcdir)/../GEOM \
|
-I$(srcdir)/../GEOM \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
|
|
||||||
libGEOMEngine_la_LDFLAGS = \
|
libGEOMEngine_la_LDFLAGS = \
|
||||||
|
@ -56,8 +56,7 @@ libGEOM_SupervEngine_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOM \
|
-I$(srcdir)/../GEOM \
|
||||||
-I$(srcdir)/../GEOM_I \
|
-I$(srcdir)/../GEOM_I \
|
||||||
-I$(srcdir)/../GEOMAlgo \
|
-I$(srcdir)/../GEOMAlgo \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGEOM_SupervEngine_la_LDFLAGS = \
|
libGEOM_SupervEngine_la_LDFLAGS = \
|
||||||
../GEOM_I/libGEOMEngine.la \
|
../GEOM_I/libGEOMEngine.la \
|
||||||
|
@ -74,8 +74,7 @@ _libGEOM_Swig_la_CPPFLAGS = \
|
|||||||
$(CORBA_CXXFLAGS) \
|
$(CORBA_CXXFLAGS) \
|
||||||
$(CORBA_INCLUDES) \
|
$(CORBA_INCLUDES) \
|
||||||
-I$(srcdir)/../GEOMGUI \
|
-I$(srcdir)/../GEOMGUI \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
_libGEOM_Swig_la_LDFLAGS = -module
|
_libGEOM_Swig_la_LDFLAGS = -module
|
||||||
_libGEOM_Swig_la_LIBADD = \
|
_libGEOM_Swig_la_LIBADD = \
|
||||||
|
@ -79,8 +79,7 @@ libGenerationGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGenerationGUI_la_LDFLAGS = \
|
libGenerationGUI_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
@ -67,8 +67,7 @@ libGroupGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libGroupGUI_la_LDFLAGS = \
|
libGroupGUI_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
@ -116,8 +116,7 @@ libMeasureGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOM \
|
-I$(srcdir)/../GEOM \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libMeasureGUI_la_LDFLAGS = \
|
libMeasureGUI_la_LDFLAGS = \
|
||||||
$(CAS_LDFLAGS) -lTKGeomBase \
|
$(CAS_LDFLAGS) -lTKGeomBase \
|
||||||
|
@ -82,8 +82,7 @@ libOperationGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMAlgo \
|
-I$(srcdir)/../GEOMAlgo \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libOperationGUI_la_LDFLAGS = \
|
libOperationGUI_la_LDFLAGS = \
|
||||||
../GEOMBase/libGEOMBase.la \
|
../GEOMBase/libGEOMBase.la \
|
||||||
|
@ -88,8 +88,7 @@ libPrimitiveGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libPrimitiveGUI_la_LDFLAGS = \
|
libPrimitiveGUI_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
@ -110,8 +110,7 @@ libRepairGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMClient \
|
-I$(srcdir)/../GEOMClient \
|
||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libRepairGUI_la_LDFLAGS = \
|
libRepairGUI_la_LDFLAGS = \
|
||||||
../GEOMBase/libGEOMBase.la
|
../GEOMBase/libGEOMBase.la
|
||||||
|
@ -95,8 +95,7 @@ libTransformationGUI_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../GEOMImpl \
|
-I$(srcdir)/../GEOMImpl \
|
||||||
-I$(srcdir)/../GEOMFiltersSelection \
|
-I$(srcdir)/../GEOMFiltersSelection \
|
||||||
-I$(top_builddir)/src/DlgRef \
|
-I$(top_builddir)/src/DlgRef \
|
||||||
-I$(top_builddir)/idl \
|
-I$(top_builddir)/idl
|
||||||
-I$(top_builddir)/salome_adm/unix
|
|
||||||
|
|
||||||
libTransformationGUI_la_LDFLAGS = \
|
libTransformationGUI_la_LDFLAGS = \
|
||||||
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
../GEOMFiltersSelection/libGEOMFiltersSelection.la \
|
||||||
|
Loading…
Reference in New Issue
Block a user