Second patch from X-Fixer: tweaks for better MSVC build
[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 SUBDIRS = include .
6
7 INCLUDES = -I$(top_srcdir)/include @ID3LIB_CFLAGS@
8
9 noinst_LIBRARIES = libplugin_common.a
10
11 noinst_HEADERS = \
12         all.h \
13         canonical_tag.h \
14         charset.h \
15         defs.h \
16         dither.h \
17         id3v1.h \
18         id3v2.h \
19         locale_hack.h \
20         replaygain_synthesis.h \
21         vorbiscomment.h
22
23 libplugin_common_a_SOURCES = \
24         canonical_tag.c \
25         charset.c \
26         dither.c \
27         id3v1.c \
28         id3v2.c \
29         replaygain_synthesis.c \
30         vorbiscomment.c
31
32 EXTRA_DIST = \
33         Makefile.lite \
34         Makefile.vc \
35         README \
36         plugin_common_static.dsp
37
38 debug:
39         $(MAKE) all CFLAGS="@DEBUG@"
40
41 profile:
42         $(MAKE) all CFLAGS="@PROFILE@"