1998-12-29 14:18:27 +00:00
|
|
|
#
|
2005-02-24 21:55:12 +00:00
|
|
|
# "$Id$"
|
1998-12-29 14:18:27 +00:00
|
|
|
#
|
2015-04-13 20:33:46 +00:00
|
|
|
# Makefile for the Fast Light Tool Kit (FLTK) documentation.
|
1998-12-29 14:18:27 +00:00
|
|
|
#
|
2015-04-13 20:33:46 +00:00
|
|
|
# Copyright 1998-2015 by Bill Spitzak and others.
|
1998-12-29 14:18:27 +00:00
|
|
|
#
|
2011-07-19 04:49:30 +00:00
|
|
|
# This library is free software. Distribution and use rights are outlined in
|
|
|
|
# the file "COPYING" which should have been included with this file. If this
|
|
|
|
# file is missing or damaged, see the license at:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/COPYING.php
|
1998-12-29 14:18:27 +00:00
|
|
|
#
|
2005-04-16 00:13:17 +00:00
|
|
|
# Please report all bugs and problems on the following page:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/str.php
|
1998-12-29 14:18:27 +00:00
|
|
|
#
|
|
|
|
|
2000-06-05 21:21:24 +00:00
|
|
|
# Get configuration stuff...
|
|
|
|
include ../makeinclude
|
|
|
|
|
2011-01-05 12:55:10 +00:00
|
|
|
# make sure that all docs are (re-)created independent of missing deps
|
|
|
|
.PHONY: pdf html refman.pdf
|
|
|
|
|
2008-10-17 12:42:28 +00:00
|
|
|
SRC_DOCDIR = ./src
|
1999-01-13 16:25:17 +00:00
|
|
|
|
2001-11-27 02:09:45 +00:00
|
|
|
# These are the HTML "source" files...
|
2008-10-15 17:35:39 +00:00
|
|
|
HTMLFILES = \
|
2008-10-17 12:42:28 +00:00
|
|
|
$(SRC_DOCDIR)/index.dox \
|
|
|
|
$(SRC_DOCDIR)/preface.dox \
|
|
|
|
$(SRC_DOCDIR)/intro.dox \
|
|
|
|
$(SRC_DOCDIR)/basics.dox \
|
|
|
|
$(SRC_DOCDIR)/common.dox \
|
|
|
|
$(SRC_DOCDIR)/editor.dox \
|
2009-03-25 23:12:48 +00:00
|
|
|
$(SRC_DOCDIR)/drawing.dox \
|
2008-10-17 12:42:28 +00:00
|
|
|
$(SRC_DOCDIR)/events.dox \
|
|
|
|
$(SRC_DOCDIR)/subclassing.dox \
|
|
|
|
$(SRC_DOCDIR)/opengl.dox \
|
|
|
|
$(SRC_DOCDIR)/fluid.dox \
|
|
|
|
$(SRC_DOCDIR)/advanced.dox \
|
|
|
|
$(SRC_DOCDIR)/unicode.dox \
|
|
|
|
$(SRC_DOCDIR)/enumerations.dox \
|
|
|
|
$(SRC_DOCDIR)/glut.dox \
|
|
|
|
$(SRC_DOCDIR)/forms.dox \
|
|
|
|
$(SRC_DOCDIR)/osissues.dox \
|
|
|
|
$(SRC_DOCDIR)/migration_1_1.dox \
|
|
|
|
$(SRC_DOCDIR)/migration_1_3.dox \
|
|
|
|
$(SRC_DOCDIR)/development.dox \
|
|
|
|
$(SRC_DOCDIR)/license.dox \
|
2011-10-25 02:17:29 +00:00
|
|
|
$(SRC_DOCDIR)/examples.dox \
|
|
|
|
$(SRC_DOCDIR)/faq.dox
|
2002-04-28 16:41:17 +00:00
|
|
|
|
2008-10-17 12:42:28 +00:00
|
|
|
MANPAGES = $(SRC_DOCDIR)/fltk.$(CAT3EXT) $(SRC_DOCDIR)/fltk-config.$(CAT1EXT) \
|
|
|
|
$(SRC_DOCDIR)/fluid.$(CAT1EXT) $(SRC_DOCDIR)/blocks.$(CAT6EXT) \
|
|
|
|
$(SRC_DOCDIR)/checkers.$(CAT6EXT) $(SRC_DOCDIR)/sudoku.$(CAT6EXT)
|
2001-02-12 15:12:14 +00:00
|
|
|
|
2002-01-07 18:05:32 +00:00
|
|
|
all: $(MANPAGES)
|
1998-12-29 14:18:27 +00:00
|
|
|
|
2015-04-13 20:33:46 +00:00
|
|
|
# Use `make docs' to create all docs for distribution files.
|
|
|
|
# You need installed versions of Doxygen and LaTeX for this.
|
2011-01-05 12:55:10 +00:00
|
|
|
|
2015-04-13 20:33:46 +00:00
|
|
|
docs: all html pdf
|
|
|
|
|
|
|
|
# Synonyms for docs:
|
|
|
|
|
|
|
|
alldocs: docs
|
|
|
|
dist: docs
|
2001-10-24 17:04:30 +00:00
|
|
|
|
1998-12-29 14:18:27 +00:00
|
|
|
clean:
|
2015-06-16 13:18:28 +00:00
|
|
|
$(RM) Doxyfile Doxybook
|
2014-10-04 23:42:17 +00:00
|
|
|
$(RM) fltk.pdf refman.pdf src/fltk-book.tex
|
2008-10-14 22:12:25 +00:00
|
|
|
$(RMDIR) html latex
|
2010-12-05 14:45:06 +00:00
|
|
|
$(RM) *~ *.bck *.bak *.log
|
2009-04-24 09:20:17 +00:00
|
|
|
$(RM) $(MANPAGES) $(SRC_DOCDIR)/*.0
|
1998-12-29 14:18:27 +00:00
|
|
|
|
1998-12-29 14:59:00 +00:00
|
|
|
depend:
|
|
|
|
|
2001-02-12 15:12:14 +00:00
|
|
|
install: $(MANPAGES)
|
2010-12-05 14:45:06 +00:00
|
|
|
echo "Installing documentation files in $(DESTDIR)$(docdir) ..."
|
2007-02-06 19:35:28 +00:00
|
|
|
-$(INSTALL_DIR) $(DESTDIR)$(docdir)
|
2008-10-17 20:46:27 +00:00
|
|
|
if test -f html/index.html ; then \
|
|
|
|
for file in html/* ; do \
|
2007-02-06 19:35:28 +00:00
|
|
|
$(INSTALL_DATA) $$file $(DESTDIR)$(docdir); \
|
2008-10-17 20:46:27 +00:00
|
|
|
done \
|
|
|
|
fi
|
2010-12-30 21:08:01 +00:00
|
|
|
if test -f fltk.pdf ; then \
|
|
|
|
echo "Installing fltk.pdf in $(DESTDIR)$(docdir) ..."; \
|
|
|
|
$(INSTALL_DATA) fltk.pdf $(DESTDIR)$(docdir); \
|
|
|
|
fi
|
2010-12-05 14:45:06 +00:00
|
|
|
echo "Installing man pages in $(DESTDIR)$(mandir) ..."
|
2007-02-06 19:35:28 +00:00
|
|
|
-$(INSTALL_DIR) $(DESTDIR)$(mandir)/cat1
|
2008-10-17 12:42:28 +00:00
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/fluid.$(CAT1EXT) $(DESTDIR)$(mandir)/cat1
|
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/fltk-config.$(CAT1EXT) $(DESTDIR)$(mandir)/cat1
|
2007-02-06 19:35:28 +00:00
|
|
|
-$(INSTALL_DIR) $(DESTDIR)$(mandir)/cat3
|
2008-10-17 12:42:28 +00:00
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/fltk.$(CAT3EXT) $(DESTDIR)$(mandir)/cat3
|
2007-02-06 19:35:28 +00:00
|
|
|
-$(INSTALL_DIR) $(DESTDIR)$(mandir)/man1
|
2008-10-17 12:42:28 +00:00
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/fluid.man $(DESTDIR)$(mandir)/man1/fluid.1
|
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/fltk-config.man $(DESTDIR)$(mandir)/man1/fltk-config.1
|
2007-02-06 19:35:28 +00:00
|
|
|
-$(INSTALL_DIR) $(DESTDIR)$(mandir)/man3
|
2008-10-17 12:42:28 +00:00
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/fltk.man $(DESTDIR)$(mandir)/man3/fltk.3
|
2001-02-12 15:12:14 +00:00
|
|
|
|
2006-01-15 18:36:16 +00:00
|
|
|
install-linux install-osx:
|
2007-02-06 19:35:28 +00:00
|
|
|
-$(INSTALL_DIR) $(DESTDIR)$(mandir)/cat6
|
2008-10-17 12:42:28 +00:00
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/blocks.$(CAT6EXT) $(DESTDIR)$(mandir)/cat6
|
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/checkers.$(CAT6EXT) $(DESTDIR)$(mandir)/cat6
|
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/sudoku.$(CAT6EXT) $(DESTDIR)$(mandir)/cat6
|
2007-02-06 19:35:28 +00:00
|
|
|
-$(INSTALL_DIR) $(DESTDIR)$(mandir)/man6
|
2008-10-17 12:42:28 +00:00
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/blocks.man $(DESTDIR)$(mandir)/man6/blocks.6
|
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/checkers.man $(DESTDIR)$(mandir)/man6/checkers.6
|
|
|
|
$(INSTALL_MAN) $(SRC_DOCDIR)/sudoku.man $(DESTDIR)$(mandir)/man6/sudoku.6
|
2006-01-15 18:36:16 +00:00
|
|
|
|
2001-11-19 21:25:35 +00:00
|
|
|
|
|
|
|
uninstall:
|
2004-10-18 20:22:25 +00:00
|
|
|
$(RMDIR) $(DESTDIR)$(docdir)
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/cat1/fluid.$(CAT1EXT)
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/man1/fluid.1
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/cat1/fltk-config.$(CAT1EXT)
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/man1/fltk-config.1
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/cat3/fltk.$(CAT3EXT)
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/man3/fltk.3
|
2001-11-19 21:25:35 +00:00
|
|
|
|
2006-01-15 18:36:16 +00:00
|
|
|
uninstall-linux uninstall-osx:
|
2006-08-25 06:58:33 +00:00
|
|
|
$(RM) $(DESTDIR)$(mandir)/cat6/blocks.$(CAT6EXT)
|
2006-01-15 18:36:16 +00:00
|
|
|
$(RM) $(DESTDIR)$(mandir)/cat6/checkers.$(CAT6EXT)
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/cat6/sudoku.$(CAT6EXT)
|
2006-08-25 06:58:33 +00:00
|
|
|
$(RM) $(DESTDIR)$(mandir)/man6/blocks.6
|
2006-01-15 18:36:16 +00:00
|
|
|
$(RM) $(DESTDIR)$(mandir)/man6/checkers.6
|
|
|
|
$(RM) $(DESTDIR)$(mandir)/man6/sudoku.6
|
2001-11-19 21:25:35 +00:00
|
|
|
|
2015-06-16 13:18:28 +00:00
|
|
|
# The documentation is generated using doxygen. There are two control files
|
|
|
|
# for doxygen: Doxyfile for html documentation and Doxybook for pdf docs.
|
|
|
|
# Both files are generated from the common source file Doxyfile.in.
|
|
|
|
# Note that Doxyfile.in is shared with CMake to configure these files.
|
|
|
|
|
|
|
|
Doxyfile: Doxyfile.in
|
|
|
|
echo "Generating Doxyfile ..."
|
|
|
|
sed -e's,@FL_VERSION@,$(FL_VERSION),' \
|
|
|
|
-e's,@GENERATE_HTML@,YES,' \
|
|
|
|
-e's,@GENERATE_LATEX@,NO,' \
|
|
|
|
-e's, @LATEX_HEADER@,,' \
|
|
|
|
-e's,@CMAKE_CURRENT_SOURCE_DIR@/,,' \
|
2018-01-16 22:17:58 +00:00
|
|
|
-e's,@FLTK_SOURCE_DIR@/,../,' \
|
2015-06-16 13:18:28 +00:00
|
|
|
< $< > $@
|
|
|
|
|
|
|
|
Doxybook: Doxyfile.in
|
|
|
|
echo "Generating Doxybook ..."
|
|
|
|
sed -e's,@FL_VERSION@,$(FL_VERSION),' \
|
|
|
|
-e's,@GENERATE_HTML@,NO,' \
|
|
|
|
-e's,@GENERATE_LATEX@,YES,' \
|
|
|
|
-e's,@LATEX_HEADER@,src/fltk-book.tex,' \
|
|
|
|
-e's,@CMAKE_CURRENT_SOURCE_DIR@/,,' \
|
2018-01-16 22:17:58 +00:00
|
|
|
-e's,@FLTK_SOURCE_DIR@/,../,' \
|
2015-06-16 13:18:28 +00:00
|
|
|
< $< > $@
|
|
|
|
|
2015-04-13 20:33:46 +00:00
|
|
|
# The HTML files are generated using doxygen, and this needs
|
2010-12-05 14:45:06 +00:00
|
|
|
# an installed doxygen version and may take some time, so this target
|
|
|
|
# is not made by default.
|
2015-04-13 20:33:46 +00:00
|
|
|
# Use `make html' or `make docs' to create the html docs.
|
2008-10-14 23:00:13 +00:00
|
|
|
|
2015-04-25 17:23:21 +00:00
|
|
|
html: $(HTMLFILES) Doxyfile
|
2001-02-12 15:12:14 +00:00
|
|
|
echo "Generating HTML documentation..."
|
2008-10-14 22:12:25 +00:00
|
|
|
-$(RMDIR) html
|
|
|
|
-$(INSTALL_DIR) html
|
2008-10-15 15:58:04 +00:00
|
|
|
-$(DOXYDOC)
|
2010-12-05 14:45:06 +00:00
|
|
|
if test "x$(DOXYDOC)" = "x" ; then \
|
|
|
|
echo "Sorry - doxygen not found. Please install doxygen and run configure."; \
|
|
|
|
fi
|
2011-01-01 14:12:10 +00:00
|
|
|
test -d html && cp src/tiny.png html/
|
2009-03-21 10:29:42 +00:00
|
|
|
|
2015-04-13 20:33:46 +00:00
|
|
|
# The PDF documentation (fltk.pdf) is generated using doxygen and LaTeX, and
|
|
|
|
# this needs installed Doxygen and LaTeX programs and may take some time, so
|
|
|
|
# this target is not made by default.
|
|
|
|
# Use `make pdf' or `make docs' to create the PDF docs.
|
1998-12-29 14:18:27 +00:00
|
|
|
|
2011-01-05 12:55:10 +00:00
|
|
|
pdf: refman.pdf
|
2008-10-15 17:35:39 +00:00
|
|
|
cp -f latex/refman.pdf fltk.pdf
|
2008-10-14 23:00:13 +00:00
|
|
|
|
2014-10-04 23:42:17 +00:00
|
|
|
refman.pdf: $(HTMLFILES) Doxybook src/fltk-book.tex
|
2011-01-05 12:55:10 +00:00
|
|
|
-$(RMDIR) latex
|
2010-12-05 14:45:06 +00:00
|
|
|
echo "Generating PDF documentation ..."
|
2015-04-13 20:33:46 +00:00
|
|
|
$(DOXYDOC) Doxybook
|
|
|
|
./make_pdf
|
1998-12-29 14:18:27 +00:00
|
|
|
|
2014-10-04 23:42:17 +00:00
|
|
|
src/fltk-book.tex: src/fltk-book.tex.in
|
|
|
|
DOXY_VERSION=`$(DOXYDOC) --version`; \
|
|
|
|
YEAR=`date +%Y`; \
|
2015-04-25 17:23:21 +00:00
|
|
|
sed -e"s/@YEAR@/$$YEAR/g" \
|
|
|
|
-e"s/@FL_VERSION@/$(FL_VERSION)/g" \
|
|
|
|
-e"s/@DOXY_VERSION@/$$DOXY_VERSION/g" \
|
|
|
|
< $< > $@
|
2014-10-04 23:42:17 +00:00
|
|
|
|
1998-12-29 14:18:27 +00:00
|
|
|
#
|
2005-02-24 21:55:12 +00:00
|
|
|
# End of "$Id$".
|
1998-12-29 14:18:27 +00:00
|
|
|
#
|