source: doc/Makefile.am @ 9ec7876

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 9ec7876 was 4eafd5b, checked in by Paul Brossier <piem@altern.org>, 18 years ago

get doxygen PROJECT_NUMBER from VERSION file
get doxygen PROJECT_NUMBER from VERSION file

  • Property mode set to 100644
File size: 998 bytes
Line 
1EXTRA_DIST = devel.cfg examples.cfg user.cfg aubio.css \
2        aubionotes.sgml aubioonset.sgml \
3        aubiocut.sgml aubiopitch.sgml aubiotrack.sgml \
4        aubioonset.1 aubionotes.1 \
5        aubiocut.1 aubiopitch.1 aubiotrack.1
6
7man_MANS = aubionotes.1 aubioonset.1 \
8        aubiocut.1 aubiopitch.1 aubiotrack.1
9CLEANFILES = $(man_MANS)
10
11all:
12
13update-docs: doc-devel
14
15doc-clean:
16        -rm -rf devel
17
18PROJECT_NUMBER = `source $(top_srcdir)/VERSION; echo $$AUBIO_MAJOR_VERSION.$$AUBIO_MINOR_VERSION.$$AUBIO_PATCH_VERSION$$AUBIO_VERSION_STATUS`
19maintainer-clean-local: doc-clean
20
21doc-devel:
22        (echo PROJECT_NUMBER = $(PROJECT_NUMBER) ; cat $(srcdir)/devel.cfg)     | doxygen -
23
24doc-user:
25        (echo PROJECT_NUMBER = $(PROJECT_NUMBER) ; cat $(srcdir)/user.cfg)      | doxygen -
26
27doc-examples:
28        (echo PROJECT_NUMBER = $(PROJECT_NUMBER) ; cat $(srcdir)/examples.cfg)  | doxygen -
29
30%.sgml:
31
32%.1:    %.sgml
33        docbook-to-man $< > $*.1
34
35%.html: %.sgml
36        docbook2html $< && mv index.html $*.html
37
38clean:
39        rm -rf devel user examples
40
41distclean-hook: clean
Note: See TracBrowser for help on using the repository browser.