mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-27 00:40:32 +05:00
Fix problems of make distcheck
This commit is contained in:
parent
b169b1a7b7
commit
cfea6a12fd
@ -38,10 +38,10 @@ WARNINGS = YES
|
|||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
#Input related options
|
#Input related options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
INPUT = @srcdir@/input
|
INPUT = @srcdir@/input @top_srcdir@/src/Tools/padder/doc/input
|
||||||
FILE_PATTERNS = *.doc
|
FILE_PATTERNS = *.doc
|
||||||
EXCLUDE =
|
EXCLUDE =
|
||||||
IMAGE_PATH = @srcdir@/images
|
IMAGE_PATH = @srcdir@/images @top_srcdir@/src/Tools/padder/doc/images
|
||||||
EXAMPLE_PATH = @top_srcdir@/src/SMESH_SWIG
|
EXAMPLE_PATH = @top_srcdir@/src/SMESH_SWIG
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#
|
#
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
EXTRA_DIST += images static/doxygen.css static/footer.html
|
EXTRA_DIST += input images static/doxygen.css static/footer.html
|
||||||
|
|
||||||
tuidocdir = $(docdir)/tui/SMESH
|
tuidocdir = $(docdir)/tui/SMESH
|
||||||
tuidoc_DATA = images/head.png images/smeshscreen.png
|
tuidoc_DATA = images/head.png images/smeshscreen.png
|
||||||
|
@ -51,3 +51,6 @@ libMEFISTO2D_la_LDFLAGS = \
|
|||||||
#libMEFISTO2D_la_LDFLAGS += -lg2c
|
#libMEFISTO2D_la_LDFLAGS += -lg2c
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
OBSOLETE_FILES = areteideale.f
|
||||||
|
|
||||||
|
EXTRA_DIST += $(OBSOLETE_FILES)
|
||||||
|
@ -26,6 +26,3 @@
|
|||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
SUBDIRS = MeshCut padder
|
SUBDIRS = MeshCut padder
|
||||||
#SUBDIRS = MeshCut
|
|
||||||
|
|
||||||
DIST_SUBDIRS = MeshCut
|
|
||||||
|
@ -1 +1,3 @@
|
|||||||
SUBDIRS = meshjob spadderpy unittests resources doc
|
SUBDIRS = meshjob spadderpy unittests resources doc
|
||||||
|
|
||||||
|
EXTRA_DIST = README.txt
|
||||||
|
@ -24,64 +24,11 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|||||||
EXTRA_DIST += images input
|
EXTRA_DIST += images input
|
||||||
|
|
||||||
#
|
#
|
||||||
# The simplest way to extends the documentation of SMESH with the
|
# The simplest way to extend the documentation of SMESH with the
|
||||||
# documentation for PADDER is to copy the local source files (*.doc
|
# documentation for PADDER is to add path to the padder documentation
|
||||||
# and *.png) in the source directory of SMESH documentation. Theses
|
# in the SMESH gui documentation
|
||||||
# pages will be automagically included in the SMESH documentation
|
|
||||||
# generating process (make usr_docs executed at installation step) and
|
|
||||||
# will be inserted in the page pages.html that lists the "Related
|
|
||||||
# pages".
|
|
||||||
#
|
#
|
||||||
|
|
||||||
DOC_FILES = \
|
|
||||||
padder_userguide.doc
|
|
||||||
|
|
||||||
DOCDIR=$(top_srcdir)/doc/salome/gui/SMESH/input
|
|
||||||
|
|
||||||
IMG_FILES = \
|
|
||||||
SMESH_spadder_end.png \
|
|
||||||
SMESH_spadder_inputdialog_concrete.png \
|
|
||||||
SMESH_spadder_inputdialog_start.png \
|
|
||||||
SMESH_spadder_inputdialog_steelbar.png \
|
|
||||||
SMESH_spadder_menu.png \
|
|
||||||
SMESH_spadder_plugindialog_compute_finished.png \
|
|
||||||
SMESH_spadder_plugindialog_compute_ready.png \
|
|
||||||
SMESH_spadder_plugindialog_compute_running.png \
|
|
||||||
SMESH_spadder_plugindialog_published.png \
|
|
||||||
SMESH_spadder_plugindialog_start.png \
|
|
||||||
SMESH_spadder_start.png
|
|
||||||
|
|
||||||
|
|
||||||
IMGDIR=$(top_srcdir)/doc/salome/gui/SMESH/images
|
|
||||||
|
|
||||||
|
|
||||||
all:
|
|
||||||
@mkdir -p $(DOCDIR); \
|
|
||||||
for docfile in $(DOC_FILES); do \
|
|
||||||
if [ ! -h $(DOCDIR)/$${docfile} ]; then \
|
|
||||||
echo "Linking file $${docfile} to $(DOCDIR)/$${docfile}"; \
|
|
||||||
ln -s ../$(srcdir)/input/$${docfile} $(DOCDIR)/$${docfile}; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
for imgfile in $(IMG_FILES); do \
|
|
||||||
if [ ! -h $(IMGDIR)/$${imgfile} ]; then \
|
|
||||||
echo "Linking file $${imgfile} to $(IMGDIR)/$${imgfile}"; \
|
|
||||||
ln -s ../$(srcdir)/images/$${imgfile} $(IMGDIR)/$${imgfile}; \
|
|
||||||
fi; \
|
|
||||||
done;
|
|
||||||
|
|
||||||
clean-local:
|
|
||||||
@ls | grep -v -e Makefile -e doxyfile | xargs rm -rf; \
|
|
||||||
for docfile in $(DOC_FILES); do \
|
|
||||||
echo "Removing file $${docfile} from $(DOCDIR)"; \
|
|
||||||
rm $(DOCDIR)/$${docfile}; \
|
|
||||||
done; \
|
|
||||||
for imgfile in $(IMG_FILES); do \
|
|
||||||
echo "Removing file $${imgfile} from $(IMGDIR)"; \
|
|
||||||
rm $(IMGDIR)/$${imgfile}; \
|
|
||||||
done;
|
|
||||||
|
|
||||||
#
|
|
||||||
# For test purpose, we let the user generate a local dosygen
|
# For test purpose, we let the user generate a local dosygen
|
||||||
# documentation including only the local pages
|
# documentation including only the local pages
|
||||||
#
|
#
|
||||||
|
@ -34,6 +34,7 @@ libMeshJobManagerEngine_la_LDFLAGS = \
|
|||||||
lib_LTLIBRARIES += libSPADDERPluginTesterEngine.la
|
lib_LTLIBRARIES += libSPADDERPluginTesterEngine.la
|
||||||
|
|
||||||
libSPADDERPluginTesterEngine_la_SOURCES = \
|
libSPADDERPluginTesterEngine_la_SOURCES = \
|
||||||
|
SPADDERPluginTester_i.hxx \
|
||||||
SPADDERPluginTester_i.cxx
|
SPADDERPluginTester_i.cxx
|
||||||
|
|
||||||
nodist_libSPADDERPluginTesterEngine_la_SOURCES =
|
nodist_libSPADDERPluginTesterEngine_la_SOURCES =
|
||||||
|
@ -4,4 +4,4 @@ SUBDIRS = appligen padderexe
|
|||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
mysalomeresdir=$(salomeresdir)
|
mysalomeresdir=$(salomeresdir)
|
||||||
mysalomeres_DATA = SPADDERCatalog.xml
|
dist_mysalomeres_DATA = SPADDERCatalog.xml
|
||||||
|
@ -20,18 +20,20 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|||||||
|
|
||||||
appligendir = $(salomeresdir)/appligen
|
appligendir = $(salomeresdir)/appligen
|
||||||
|
|
||||||
appligen_DATA= \
|
dist_appligen_DATA= \
|
||||||
envappli.sh \
|
|
||||||
config_appli.xml \
|
|
||||||
appli-splashscreen.jpg \
|
appli-splashscreen.jpg \
|
||||||
SalomeApp.xml \
|
SalomeApp.xml \
|
||||||
CatalogResources.xml
|
CatalogResources.xml
|
||||||
|
|
||||||
appligen_SCRIPTS= \
|
nodist_appligen_DATA= \
|
||||||
|
envappli.sh \
|
||||||
|
config_appli.xml
|
||||||
|
|
||||||
|
nodist_appligen_SCRIPTS= \
|
||||||
appligen.sh
|
appligen.sh
|
||||||
|
|
||||||
EXTRA_DIST += $(appligen_DATA) $(appligen_SCRIPTS)
|
|
||||||
|
|
||||||
|
|
||||||
envappli.sh:
|
envappli.sh:
|
||||||
$(srcdir)/genenv.sh envappli.sh
|
$(srcdir)/genenv.sh envappli.sh
|
||||||
|
|
||||||
|
EXTRA_DIST += README.txt genenv.sh
|
||||||
|
CLEANFILES = envappli.sh
|
||||||
|
@ -24,15 +24,21 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|||||||
mysalomeresdir=$(salomeresdir)/padderexe
|
mysalomeresdir=$(salomeresdir)/padderexe
|
||||||
|
|
||||||
version=med3
|
version=med3
|
||||||
|
notinstall_version=med2
|
||||||
|
|
||||||
# We install the padder.exe program and the files required for testing
|
# We install the padder.exe program and the files required for testing
|
||||||
# the execution from within the installation directory
|
# the execution from within the installation directory
|
||||||
mysalomeres_SCRIPTS = \
|
dist_mysalomeres_SCRIPTS = \
|
||||||
$(version)/padder.exe \
|
$(version)/padder.exe \
|
||||||
envPadder.sh \
|
|
||||||
padder.sh
|
padder.sh
|
||||||
|
|
||||||
mysalomeres_DATA = \
|
nodist_mysalomeres_SCRIPTS = \
|
||||||
|
envPadder.sh
|
||||||
|
|
||||||
|
dist_mysalomeres_DATA = \
|
||||||
$(version)/data.txt \
|
$(version)/data.txt \
|
||||||
$(version)/concrete.med \
|
$(version)/concrete.med \
|
||||||
$(version)/ferraill.med
|
$(version)/ferraill.med
|
||||||
|
|
||||||
|
NOT_USED_FILES = buildparticules.py particules.png
|
||||||
|
EXTRA_DIST += $(notinstall_version) $(NOT_USED_FILES)
|
||||||
|
@ -6,15 +6,20 @@ include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|||||||
# sub-package plugins.
|
# sub-package plugins.
|
||||||
#
|
#
|
||||||
spadderpydir=$(smeshpypkgdir)/spadder/gui
|
spadderpydir=$(smeshpypkgdir)/spadder/gui
|
||||||
spadderpy_PYTHON = \
|
dist_spadderpy_PYTHON = \
|
||||||
__init__.py \
|
__init__.py \
|
||||||
plugindialog_ui.py \
|
|
||||||
plugindialog.py \
|
plugindialog.py \
|
||||||
inputframe_ui.py \
|
|
||||||
inputdialog.py \
|
inputdialog.py \
|
||||||
inputdata.py
|
inputdata.py
|
||||||
|
|
||||||
spadderpy_DATA= \
|
PYUIC_FILES = \
|
||||||
|
plugindialog_ui.py \
|
||||||
|
inputframe_ui.py
|
||||||
|
|
||||||
|
nodist_spadderpy_PYTHON = $(PYUIC_FILES)
|
||||||
|
CLEANFILES = $(PYUIC_FILES)
|
||||||
|
|
||||||
|
dist_spadderpy_DATA= \
|
||||||
parameters.png \
|
parameters.png \
|
||||||
input.png \
|
input.png \
|
||||||
select.png \
|
select.png \
|
||||||
@ -34,3 +39,5 @@ PYUIC = @PYUIC@
|
|||||||
PYRCC = @PYRCC@
|
PYRCC = @PYRCC@
|
||||||
%_rc.py:%.qrc
|
%_rc.py:%.qrc
|
||||||
$(PYRCC) $< -o $@
|
$(PYRCC) $< -o $@
|
||||||
|
|
||||||
|
EXTRA_DIST += $(PYUIC_FILES:%_ui.py=%.ui)
|
||||||
|
Loading…
Reference in New Issue
Block a user