2003-03-11 16:56:45 +00:00
|
|
|
# install the man pages and include in distribution
|
|
|
|
man_MANS = fluidsynth.1
|
2009-11-07 03:26:19 +00:00
|
|
|
|
2010-08-08 12:04:58 +00:00
|
|
|
EXTRA_DIST = CMakeLists.txt \
|
|
|
|
Doxyfile.cmake \
|
2009-11-07 03:26:19 +00:00
|
|
|
$(man_MANS) \
|
|
|
|
Doxyfile \
|
|
|
|
example.c \
|
|
|
|
fluidsynth-v10-devdoc.xml \
|
|
|
|
fluidsynth-v11-devdoc.txt \
|
|
|
|
fluidsynth_arpeggio.c \
|
|
|
|
fluidsynth_fx.c \
|
|
|
|
fluidsynth_metronome.c \
|
|
|
|
fluidsynth_simple.c \
|
|
|
|
xtrafluid.txt \
|
|
|
|
FluidSynth-LADSPA.pdf
|
2003-08-26 00:06:49 +00:00
|
|
|
|
|
|
|
docbook_docs = fluidsynth-v10-devdoc.xml
|
|
|
|
|
|
|
|
DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
|
|
|
|
|
|
|
|
# Run "make update-docs" to update developer doc and doxygen reference
|
|
|
|
update-docs: html/index.html doxygen
|
|
|
|
|
|
|
|
# The new XML DocBook way:
|
|
|
|
html/index.html: $(docbook_docs)
|
|
|
|
-rm -rf html
|
|
|
|
$(mkinstalldirs) html
|
|
|
|
xsltproc -o html/ --catalogs $(DOCBOOK_STYLESHEET) $<
|
|
|
|
|
|
|
|
doc-clean:
|
|
|
|
-rm -rf html
|
|
|
|
|
|
|
|
maintainer-clean-local: doc-clean
|
|
|
|
|
|
|
|
doxygen: Doxyfile
|
|
|
|
doxygen Doxyfile
|
|
|
|
|
|
|
|
# Update docs for distribution
|
|
|
|
dist-hook: update-docs
|