Mercurial > audlegacy
annotate Plugins/Input/mpg123/Makefile.am @ 361:db298f2d3dd9 trunk
[svn] Detect files by content; remove quick detect.
author | chainsaw |
---|---|
date | Fri, 30 Dec 2005 17:56:32 -0800 |
parents | cf71ec544543 |
children |
rev | line source |
---|---|
61 | 1 if ENABLE_MPG123 |
2 | |
3 lib_LTLIBRARIES = libmpg123.la | |
4 | |
5 endif | |
6 | |
7 libdir = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
8 | |
9 COMMON_SRC = mpg123.c configure.c fileinfo.c common.c \ | |
10 decode_2to1.c decode_4to1.c \ | |
11 layer1.c layer2.c layer3.c \ | |
12 tabinit.c equalizer.c http.c \ | |
13 huffman.h mpg123.h l2tables.h getbits.h \ | |
14 dxhead.c dxhead.h \ | |
15 id3.c xmms-id3.h id3_frame.c id3_frame_content.c id3_frame_text.c \ | |
16 id3_frame_url.c id3_header.h id3_tag.c | |
17 | |
18 if ARCH_X86 | |
19 | |
20 EXTRA_SRC = decode_i386.c dct64_i386.c | |
21 | |
22 else | |
23 | |
24 EXTRA_SRC = decode.c dct64.c | |
25 | |
26 endif # ARCH_X86 | |
27 | |
169
cf71ec544543
[svn] Remove assembly optimizations, we want to play nicely with any system.
nenolod
parents:
61
diff
changeset
|
28 EXTRA_DIST = decode.c decode_i386.c dct64_i386.c \ |
cf71ec544543
[svn] Remove assembly optimizations, we want to play nicely with any system.
nenolod
parents:
61
diff
changeset
|
29 getbits.c dct64.c mp3.xpm |
61 | 30 |
31 libmpg123_la_SOURCES = $(COMMON_SRC) $(EXTRA_SRC) | |
32 libmpg123_la_LDFLAGS = $(PLUGIN_LDFLAGS) | |
33 libmpg123_la_LIBADD = $(ID3LIBS) $(GTK_LIBS) $(top_builddir)/libaudacious/libaudacious.la | |
34 INCLUDES = $(GTK_CFLAGS) $(ARCH_DEFINES) -I$(top_srcdir)/intl -I$(top_srcdir) |