Mercurial > audlegacy
annotate Plugins/Input/mpg123/Makefile.in @ 1284:13d5b542f4fd trunk
[svn] - kludge
author | nenolod |
---|---|
date | Sun, 18 Jun 2006 00:28:12 -0700 |
parents | 042f189bd225 |
children | 0b0e00851054 |
rev | line source |
---|---|
566
ab7027a06ca9
[svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents:
169
diff
changeset
|
1 include ../../../mk/rules.mk |
ab7027a06ca9
[svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents:
169
diff
changeset
|
2 include ../../../mk/objective.mk |
61 | 3 |
566
ab7027a06ca9
[svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents:
169
diff
changeset
|
4 OBJECTIVE_LIBS = libmpg123.so |
61 | 5 |
592 | 6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) |
7 | |
566
ab7027a06ca9
[svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents:
169
diff
changeset
|
8 SOURCES = mpg123.c configure.c fileinfo.c common.c \ |
ab7027a06ca9
[svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents:
169
diff
changeset
|
9 decode_2to1.c decode_4to1.c \ |
ab7027a06ca9
[svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents:
169
diff
changeset
|
10 layer1.c layer2.c layer3.c \ |
1110 | 11 tabinit.c http.c \ |
1119
042f189bd225
[svn] - rename psycho.c to paranoia.c, as other stuff will be here (such as frequency locking code, to fix warble, etc.)
nenolod
parents:
1110
diff
changeset
|
12 dxhead.c decode.c dct64.c paranoia.c interface.c |
61 | 13 |
964 | 14 OBJECTS = ${SOURCES:.c=.o} tag_c_hacked.o |
61 | 15 |
1090
09eb2c83097a
[svn] Psychoaccoustics support (to disable, temporarily add -UPSYCHO to your CFLAGS.):
nenolod
parents:
964
diff
changeset
|
16 CFLAGS += -DPSYCHO -fPIC -DPIC $(GTK_CFLAGS) $(TAGLIB_CFLAGS) $(ARCH_DEFINES) -I../../../intl -I../../.. |
566
ab7027a06ca9
[svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents:
169
diff
changeset
|
17 |
964 | 18 CXXFLAGS = $(CFLAGS) |
19 | |
20 LIBADD = -ltag_c $(GTK_LIBS) $(TAGLIB_LIBS) |