Mercurial > audlegacy-plugins
annotate src/shnplug/Makefile @ 3038:327225adf175
Updated Catalan translation from Ernest Adrogu¸«± (bug #25)
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Sun, 12 Apr 2009 20:00:52 -0400 |
parents | c42fa8f89616 |
children |
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 | 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 | 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 | 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 | 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} \ |
2524
c42fa8f89616
Remove -I../../intl and PANGO_{CFLAGS,LIBS} from those Makefiles where they are not needed (in practice almost all of them.)
Matti Hamalainen <ccr@tnsp.org>
parents:
2138
diff
changeset
|
25 ${ARCH_DEFINES} ${SIMD_CFLAGS} -I../.. -Wall |
c42fa8f89616
Remove -I../../intl and PANGO_{CFLAGS,LIBS} from those Makefiles where they are not needed (in practice almost all of them.)
Matti Hamalainen <ccr@tnsp.org>
parents:
2138
diff
changeset
|
26 LIBS += ${GTK_LIBS} ${GLIB_LIBS} |
1305 | 27 |