OLD | NEW |
1 ## Process this file with automake to produce Makefile.in | 1 ## Process this file with automake to produce Makefile.in |
2 | 2 |
3 DOCINPUTS = $(top_srcdir)/include/opus.h \ | 3 DOCINPUTS = $(top_srcdir)/include/opus.h \ |
4 $(top_srcdir)/include/opus_multistream.h \ | 4 $(top_srcdir)/include/opus_multistream.h \ |
5 $(top_srcdir)/include/opus_defines.h \ | 5 $(top_srcdir)/include/opus_defines.h \ |
6 $(top_srcdir)/include/opus_types.h \ | 6 $(top_srcdir)/include/opus_types.h \ |
7 $(top_srcdir)/include/opus_custom.h \ | 7 $(top_srcdir)/include/opus_custom.h \ |
8 $(top_srcdir)/doc/header.html \ | 8 $(top_srcdir)/doc/header.html \ |
9 $(top_srcdir)/doc/footer.html \ | 9 $(top_srcdir)/doc/footer.html \ |
10 $(top_srcdir)/doc/customdoxygen.css | 10 $(top_srcdir)/doc/customdoxygen.css |
11 | 11 |
12 EXTRA_DIST = customdoxygen.css Doxyfile.in footer.html header.html opus_logo.svg | 12 EXTRA_DIST = customdoxygen.css Doxyfile.in footer.html header.html \ |
| 13 opus_logo.svg trivial_example.c |
13 | 14 |
14 | 15 |
15 if HAVE_DOXYGEN | 16 if HAVE_DOXYGEN |
16 | 17 |
17 all-local: doxygen-build.stamp | 18 all-local: doxygen-build.stamp |
18 | 19 |
19 doxygen-build.stamp: Doxyfile $(DOCINPUTS) | 20 doxygen-build.stamp: Doxyfile $(DOCINPUTS) |
20 doxygen | 21 doxygen |
21 touch $@ | 22 touch $@ |
22 | 23 |
(...skipping 11 matching lines...) Expand all Loading... |
34 $(RM) -r html | 35 $(RM) -r html |
35 $(RM) -r latex | 36 $(RM) -r latex |
36 $(RM) -r man | 37 $(RM) -r man |
37 $(RM) doxygen-build.stamp | 38 $(RM) doxygen-build.stamp |
38 | 39 |
39 uninstall-local: | 40 uninstall-local: |
40 $(RM) -r $(DESTDIR)$(docdir)/html | 41 $(RM) -r $(DESTDIR)$(docdir)/html |
41 $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h.
3 | 42 $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h.
3 |
42 | 43 |
43 endif | 44 endif |
OLD | NEW |