blob: 4d5e9aca2ed2a92af75aa795289c119a358f588c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)/include @ID3LIB_CFLAGS@
noinst_LTLIBRARIES = libplugin_common.la
noinst_HEADERS = \
all.h \
canonical_tag.h \
charset.h \
defs.h \
dither.h \
id3v1.h \
id3v2.h \
locale_hack.h \
vorbiscomment.h
libplugin_common_la_SOURCES = \
canonical_tag.c \
charset.c \
dither.c \
id3v1.c \
id3v2.c \
vorbiscomment.c
EXTRA_DIST = \
Makefile.lite \
README \
plugin_common_static.dsp
debug:
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"
|