~njh-aelius/maxosx/musicbrainz-tags

« back to all changes in this revision

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

  • Committer: stephen_booth
  • Date: 2008-04-30 02:09:12 UTC
  • Revision ID: svn-v4:6b6cea13-1402-0410-9567-a7afb52bf336:trunk:1372
Update to latest taglib SVN

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = frames
 
2
INCLUDES = \
 
3
        -I$(top_srcdir)/taglib \
 
4
        -I$(top_srcdir)/taglib/toolkit \
 
5
        -I$(top_srcdir)/taglib/mpeg \
 
6
        -I$(top_srcdir)/taglib/mpeg/id3v1 \
 
7
         $(all_includes)
 
8
 
 
9
noinst_LTLIBRARIES = libid3v2.la
 
10
 
 
11
libid3v2_la_SOURCES = \
 
12
        id3v2framefactory.cpp id3v2synchdata.cpp id3v2tag.cpp \
 
13
        id3v2header.cpp id3v2frame.cpp id3v2footer.cpp \
 
14
        id3v2extendedheader.cpp
 
15
 
 
16
taglib_include_HEADERS = \
 
17
        id3v2extendedheader.h id3v2frame.h id3v2header.h \
 
18
        id3v2synchdata.h id3v2footer.h id3v2framefactory.h id3v2tag.h
 
19
 
 
20
taglib_includedir = $(includedir)/taglib
 
21
 
 
22
if link_zlib
 
23
zlib = -lz
 
24
endif
 
25
 
 
26
libid3v2_la_LIBADD = ./frames/libframes.la $(zlib)