Files
flac/src/plugin_common/Makefile.am

36 lines
524 B
Makefile
Raw Normal View History

2002-08-23 06:28:59 +00:00
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)/include
noinst_LIBRARIES = libplugin-common.a
noinst_HEADERS = \
all.h \
canonical_tag.h \
2002-08-27 05:36:09 +00:00
charset.h \
dither.h \
id3v1.h \
2002-08-30 05:44:32 +00:00
id3v2.h \
vorbiscomment.h
2002-08-23 06:28:59 +00:00
libplugin_common_a_SOURCES = \
canonical_tag.c \
2002-08-27 05:36:09 +00:00
charset.c \
dither.c \
id3v1.c \
2002-08-30 05:44:32 +00:00
id3v2.c \
vorbiscomment.c
2002-08-23 06:28:59 +00:00
EXTRA_DIST = \
Makefile.lite \
Makefile.vc \
README
debug:
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"