view Plugins/Input/mpg123/Makefile.am @ 354:e2775c9b8b13 trunk

[svn] very rudementary http stream detection support for mpg123-clone. - i had to do a lot of stupid hackish workarounds for shoutcast (BTW, I hate you AOL and I hope you die someday.)
author nenolod
date Thu, 29 Dec 2005 02:29:29 -0800
parents cf71ec544543
children
line wrap: on
line source

if ENABLE_MPG123

lib_LTLIBRARIES = libmpg123.la

endif

libdir = $(plugindir)/$(INPUT_PLUGIN_DIR)

COMMON_SRC = mpg123.c configure.c fileinfo.c common.c \
decode_2to1.c decode_4to1.c \
layer1.c layer2.c layer3.c \
tabinit.c equalizer.c http.c \
huffman.h mpg123.h l2tables.h getbits.h \
dxhead.c dxhead.h \
id3.c xmms-id3.h id3_frame.c id3_frame_content.c id3_frame_text.c \
id3_frame_url.c id3_header.h id3_tag.c

if ARCH_X86

EXTRA_SRC = decode_i386.c dct64_i386.c

else

EXTRA_SRC = decode.c dct64.c

endif # ARCH_X86

EXTRA_DIST = decode.c decode_i386.c dct64_i386.c \
             getbits.c dct64.c mp3.xpm

libmpg123_la_SOURCES = $(COMMON_SRC) $(EXTRA_SRC)
libmpg123_la_LDFLAGS = $(PLUGIN_LDFLAGS)
libmpg123_la_LIBADD = $(ID3LIBS) $(GTK_LIBS) $(top_builddir)/libaudacious/libaudacious.la
INCLUDES = $(GTK_CFLAGS) $(ARCH_DEFINES) -I$(top_srcdir)/intl -I$(top_srcdir)