Copy local state in AudioRegionView copy constructor. Fixes #4047.
[ardour2.git] / libs / taglib / Makefile.am
blobf454f7ef0fe94cc64b6d0ec8b32d2921fc65ef80
1 SUBDIRS = taglib bindings tests
3 AUTOMAKE_OPTIONS = foreign
5 $(top_srcdir)/configure.in: configure.in.in $(top_srcdir)/subdirs
6         cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in ;
8 $(top_srcdir)/subdirs:
9         cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs
11 $(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in
12         @cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4
14 MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files
16 bin_SCRIPTS = taglib-config
18 pkgconfigdir = $(libdir)/pkgconfig
19 pkgconfig_DATA = taglib.pc
21 package-messages:
22         $(MAKE) -f admin/Makefile.common package-messages
24 dist-hook:
25         cd $(top_distdir) && perl admin/am_edit -padmin
26         cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs
28 examples: examples-all
30 examples-all:
31         cd examples ; \
32         $(MAKE) all
34 apidox:
35         $(mkinstalldirs) doc/api; \
36         if test ! -x doc/common; then \
37                 $(LN_S) $(kde_libs_htmldir)/en/common doc/common ; \
38         fi; \
39         cp $(top_srcdir)/admin/Doxyfile.global taglib.doxyfile; \
40         echo "PROJECT_NAME        = TagLib" >> taglib.doxyfile; \
41         echo "PROJECT_NUMBER      = \"Version 1.5\"" >> taglib.doxyfile; \
42         echo "INPUT               = $(srcdir)" >> taglib.doxyfile; \
43         echo "OUTPUT_DIRECTORY    = doc/api" >> taglib.doxyfile; \
44         echo "HTML_OUTPUT         = html" >> taglib.doxyfile; \
45         echo "GENERATE_HTML       = YES" >> taglib.doxyfile ; \
46         echo "GENERATE_MAN        = NO" >> taglib.doxyfile ; \
47         echo "GENERATE_LATEX      = NO" >> taglib.doxyfile ; \
48         echo "HTML_HEADER         = doc/common/header.html" >> taglib.doxyfile ; \
49         echo "HTML_FOOTER         = doc/common/footer.html" >> taglib.doxyfile ; \
50         echo "HTML_STYLESHEET     = doc/common/doxygen.css" >> taglib.doxyfile ; \
51         echo "FILE_PATTERNS       = *.h" >> taglib.doxyfile ; \
52         echo "PREDEFINED          = DO_NOT_DOCUMENT DOXYGEN" >> taglib.doxyfile ; \
53         echo "EXTRACT_ALL         = YES" >> taglib.doxyfile ; \
54         doxygen taglib.doxyfile