Makefile.am
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:1k
源码类别:

midi

开发平台:

C/C++

  1. #  install the man pages and include in distribution
  2. man_MANS = fluidsynth.1 
  3. EXTRA_DIST = 
  4.   $(man_MANS) 
  5.   Doxyfile 
  6.   example.c 
  7.   fluidsynth-v10-devdoc.xml 
  8.   fluidsynth-v11-devdoc.txt 
  9.   fluidsynth_arpeggio.c 
  10.   fluidsynth_fx.c 
  11.   fluidsynth_metronome.c 
  12.   fluidsynth_simple.c 
  13.   xtrafluid.txt 
  14.   FluidSynth-LADSPA.pdf
  15. docbook_docs = fluidsynth-v10-devdoc.xml
  16. DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
  17. # Run "make update-docs" to update developer doc and doxygen reference
  18. update-docs: html/index.html doxygen
  19. # The new XML DocBook way:
  20. html/index.html: $(docbook_docs)
  21. -rm -rf html
  22. $(mkinstalldirs) html
  23. xsltproc -o html/ --catalogs $(DOCBOOK_STYLESHEET) $<
  24. doc-clean:
  25. -rm -rf html
  26. maintainer-clean-local: doc-clean
  27. doxygen: Doxyfile
  28. doxygen Doxyfile
  29. # Update docs for distribution
  30. dist-hook: update-docs