cleaner clean
[aubio.git] / doc / Makefile.am
1 #  install the man pages and include in distribution
2 #man_MANS = fluidsynth.1 
3 #EXTRA_DIST = $(man_MANS) devel.cfg fluidsynth.1 
4 EXTRA_DIST = devel.cfg examples.cfg user.cfg aubio.css
5
6 #docbook_docs = aubio-devdoc.xml
7 #DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
8
9 all: 
10
11 # Run "make update-docs" to update developer doc and doxygen reference
12 #update-docs: xmldocbook doxygen
13 update-docs: doc-devel
14
15 # The new XML DocBook way:
16 #xmldocbook: $(docbook_docs)
17 #       -rm -rf html
18 #       $(mkinstalldirs) html
19 #       xsltproc -o html/ --catalogs $(DOCBOOK_STYLESHEET) $<
20
21 doc-clean:
22         -rm -rf devel
23
24 maintainer-clean-local: doc-clean
25
26 doc-devel: 
27         doxygen devel.cfg
28         cp aubio.css devel
29
30 doc-user: 
31         doxygen user.cfg
32         cp aubio.css user
33
34 doc-examples: 
35         doxygen examples.cfg
36         cp aubio.css examples
37         
38 man:
39         docbook-to-man aubionotes.sgml > aubionotes.1
40         docbook-to-man aubioonset.sgml > aubioonset.1
41
42 # Update docs for distribution
43 #dist-hook: 
44
45 clean:
46         rm -rf devel user examples *.1
47
48 distclean: clean