Files
flac/src/plugin_common/Makefile.am
Matt Zimmerman ca56e93b03 Build libtool archives instead of plain .a archives, so that PIC versions are
built and can they be portably linked into shared libraries.
2003-02-07 02:43:02 +00:00

42 lines
657 B
Makefile

## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
SUBDIRS = include .
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 \
replaygain_synthesis.h \
vorbiscomment.h
libplugin_common_la_SOURCES = \
canonical_tag.c \
charset.c \
dither.c \
id3v1.c \
id3v2.c \
replaygain_synthesis.c \
vorbiscomment.c
EXTRA_DIST = \
Makefile.lite \
README \
plugin_common_static.dsp
debug:
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"