add function for getting a combined tag
[platform/upstream/flac.git] / src / plugin_common / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 AUTOMAKE_OPTIONS = foreign
4
5 INCLUDES = -I$(top_srcdir)/include
6
7 noinst_LIBRARIES = libplugin-common.a
8
9 noinst_HEADERS = \
10         all.h \
11         canonical_tag.h \
12         charset.h \
13         dither.h \
14         id3v1.h \
15         id3v2.h
16
17 libplugin_common_a_SOURCES = \
18         canonical_tag.c \
19         charset.c \
20         dither.c \
21         id3v1.c \
22         id3v2.c
23
24 EXTRA_DIST = \
25         Makefile.lite \
26         Makefile.vc \
27         README
28
29 debug:
30         $(MAKE) all CFLAGS="@DEBUG@"
31
32 profile:
33         $(MAKE) all CFLAGS="@PROFILE@"