summaryrefslogtreecommitdiff
path: root/doc/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Clean doxygen_sqlite3.dbRicardo Constantino (:RiCON)2016-05-181-0/+1
| | | | Generated by newer versions of Doxygen when built with sqlite3.
* Adds trivial_example.c to make distJean-Marc Valin2013-11-211-1/+2
|
* Don't repeatedly install the doc dir for every fileRon2013-05-121-1/+1
|
* remove GNUism from install doc commandHanspeter Niederstrasser2012-10-071-1/+2
|
* Only install opus_*.3 manpages. Fixes 'make distcheck'.Ralph Giles2012-08-101-1/+1
| | | | | | | | | | | | | | | We were installing every readable file in man/man3, but only unstalling files matching opus_*.3. Some doxygen versions construct manpage versions of the marked up header files and directory index, which got left on the system after 'make uninstall'. I don't think the 'uninstall' target is widely used, it's often broken and can easily break other software. However, we rely on 'make distcheck' which does verify this issue. Instead, only install the opus_*.3 manpages, which are the core api documentation.
* Include the doc dir in DIST_SUBDIRS instead of EXTRA_DISTRon2012-06-111-1/+1
| | | | | | | | | And explicitly specify what we want included in EXTRA_DIST of doc/Makefile.am, otherwise make dist picks up whatever random junk you might have laying around in that dir at the time you run it. Tweak the top level delegation targets, because this means distclean will be run in the doc dir by default now without our help.
* Don't bark scary warnings at compile time about no doxygenRon2012-06-111-9/+5
| | | | | We already report whether or not the docs will be built in the summary box at the end of the configure run.
* Fixup paths in doc/Gregory Maxwell2012-06-111-2/+5
|
* Correct documentation in opus_custom.h.Gregory Maxwell2012-06-101-1/+2
|
* Actually install the documentation with make installRon2012-05-211-6/+21
| | | | Instead of just its build stamp :)
* Moves the main headers from src/ to include/Jean-Marc Valin2011-10-261-4/+4
|
* renames the libcelt/ directory to celt/Jean-Marc Valin2011-09-131-2/+2
|
* Tell automake to clean the doxygen output.Ralph Giles2011-09-071-0/+7
| | | | | Without the extra clean, 'make distcheck' fails because the distclean target doesn't remove all generated files.
* Add initial Doxygen support for generating api documentation.Ralph Giles2011-09-071-0/+20
Doxygen is a tool for generating programming documentation based on comments in header and source files. This commit adds the necessary configuration file and associated support in the autotools build. Right now it doesn't generate much documentation because our public header files aren't marked up. Warnings are printed for undocumented members and arguments.