annotate src/shnplug/Makefile @ 2284:d19b53359b24

cleaned up the sndfile wav plugin, currently limiting it ONLY TO WAV PLAYBACK. if somebody is more experienced with it and wants to restore the other formats, go ahead (maybe change the name of the plugin too?).
author mf0102 <0102@gmx.at>
date Wed, 09 Jan 2008 15:41:22 +0100
parents 76f9a4168708
children c42fa8f89616
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2018
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2017
diff changeset
1 PLUGIN = libshnplug${PLUGIN_SUFFIX}
1305
51bf0e431e02 Add SHNplug.
William Pitcock <nenolod@atheme-project.org>
parents:
diff changeset
2
2008
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
3 SRCS = array.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
4 convert.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
5 fixio.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
6 gtk.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
7 id3v2.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
8 misc.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
9 output.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
10 seek.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
11 shn.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
12 shorten.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
13 sulawalaw.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
14 vario.c \
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
15 wave.c
1305
51bf0e431e02 Add SHNplug.
William Pitcock <nenolod@atheme-project.org>
parents:
diff changeset
16
2008
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
17 include ../../buildsys.mk
b3002edfa3b9 Converted the last plugin to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1305
diff changeset
18 include ../../extra.mk
1305
51bf0e431e02 Add SHNplug.
William Pitcock <nenolod@atheme-project.org>
parents:
diff changeset
19
2018
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2017
diff changeset
20 plugindir := ${plugindir}/${INPUT_PLUGIN_DIR}
1305
51bf0e431e02 Add SHNplug.
William Pitcock <nenolod@atheme-project.org>
parents:
diff changeset
21
2018
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2017
diff changeset
22 CFLAGS += ${PLUGIN_CFLAGS}
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2017
diff changeset
23 LDFLAGS += ${AUDLDFLAGS}
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2017
diff changeset
24 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${PICFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${MOWGLI_CFLAGS} \
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2017
diff changeset
25 ${PANGO_CFLAGS} ${ARCH_DEFINES} ${SIMD_CFLAGS} -I../../intl -I../.. -Wall
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2017
diff changeset
26 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS}
1305
51bf0e431e02 Add SHNplug.
William Pitcock <nenolod@atheme-project.org>
parents:
diff changeset
27