mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
70 lines
2.5 KiB
Makefile
Executable File
70 lines
2.5 KiB
Makefile
Executable File
# Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
#
|
|
|
|
# File : Makefile.in
|
|
# Author : Vasily Rusyaev (Open Cascade NN)
|
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
|
# Module : doc
|
|
#
|
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|
|
|
EXTRA_DIST += images input static/footer.html static/salome_extra.css static/SALOME_BOA_PA.pdf
|
|
|
|
guidocdir = $(docdir)/gui/GEOM
|
|
guidoc_DATA = images/head.png static/SALOME_BOA_PA.pdf
|
|
|
|
tmp/geomBuilder.py: $(top_srcdir)/src/GEOM_SWIG/geomBuilder.py
|
|
mkdir -p tmp && $(KERNEL_ROOT_DIR)/bin/salome/prepare_generating_doc.py -o $@ $<
|
|
|
|
tmp/gsketcher.py: $(top_srcdir)/src/GEOM_SWIG/gsketcher.py
|
|
mkdir -p tmp && $(KERNEL_ROOT_DIR)/bin/salome/prepare_generating_doc.py -o $@ $<
|
|
|
|
usr_docs: doxyfile_tui doxyfile_py doxyfile tmp/geomBuilder.py tmp/gsketcher.py
|
|
@echo "Generating user documentation" ; \
|
|
$(DOXYGEN) doxyfile_tui ; \
|
|
$(DOXYGEN) doxyfile_py ; \
|
|
$(DOXYGEN) doxyfile
|
|
|
|
docs: usr_docs
|
|
|
|
clean-local:
|
|
@for filen in `find . -maxdepth 1` ; do \
|
|
case $${filen} in \
|
|
./Makefile* | ./doxyfile* | ./images | ./input | ./static ) ;; \
|
|
. | .. | ./CVS ) ;; \
|
|
*) echo "Removing $${filen}" ; rm -rf $${filen} ;; \
|
|
esac ; \
|
|
done ;
|
|
|
|
install-data-local: usr_docs
|
|
@if [ -e index.html ]; then \
|
|
$(INSTALL) -d $(DESTDIR)$(docdir)/gui/GEOM ; \
|
|
for filen in `find . -maxdepth 1` ; do \
|
|
case $${filen} in \
|
|
. | .. | ./static | ./tmp | ./Makefile* | ./doxyfile* ) ;; \
|
|
*) echo "Installing $${filen}" ; cp -rp $${filen} $(DESTDIR)$(docdir)/gui/GEOM ;; \
|
|
esac ; \
|
|
done ; \
|
|
cp -rp $(srcdir)/images/head.png $(DESTDIR)$(docdir)/gui/GEOM/geompy_doc ; \
|
|
fi
|
|
|
|
|
|
uninstall-local:
|
|
rm -rf $(DESTDIR)$(docdir)/gui/GEOM
|