~njh-aelius/maxosx/musicbrainz-tags

« back to all changes in this revision

Viewing changes to Frameworks/taglib/taglib/Makefile.am

  • Committer: stephen_booth
  • Date: 2008-04-30 01:48:01 UTC
  • Revision ID: svn-v4:6b6cea13-1402-0410-9567-a7afb52bf336:trunk:1371
Fixing the taglib source tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = taglib bindings tests
2
 
 
3
 
AUTOMAKE_OPTIONS = foreign
4
 
 
5
 
$(top_srcdir)/configure.in: configure.in.in $(top_srcdir)/subdirs
6
 
        cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in ;
7
 
 
8
 
$(top_srcdir)/subdirs:
9
 
        cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs
10
 
 
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
13
 
 
14
 
MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files
15
 
 
16
 
bin_SCRIPTS = taglib-config
17
 
 
18
 
pkgconfigdir = $(libdir)/pkgconfig
19
 
pkgconfig_DATA = taglib.pc
20
 
 
21
 
package-messages:
22
 
        $(MAKE) -f admin/Makefile.common package-messages
23
 
 
24
 
dist-hook:
25
 
        cd $(top_distdir) && perl admin/am_edit -padmin
26
 
        cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs
27
 
 
28
 
examples: examples-all
29
 
 
30
 
examples-all:
31
 
        cd examples ; \
32
 
        $(MAKE) all
33
 
 
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