mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 23:11:41 +00:00
aac2354f5c
cd fluidsynth && git mv * ../
40 lines
916 B
Makefile
40 lines
916 B
Makefile
# install the man pages and include in distribution
|
|
man_MANS = fluidsynth.1
|
|
|
|
EXTRA_DIST = CMakeLists.txt \
|
|
Doxyfile.cmake \
|
|
$(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
|
|
|
|
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
|