Mercurial > audlegacy-plugins
annotate src/amidi-plug/Makefile @ 3198:83b1a4e5f453
alsa-ng: Keep mixer open even when playback stopped.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Wed, 22 Jul 2009 16:42:16 -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 = amidi-plug${PLUGIN_SUFFIX} |
17 | 2 |
2014
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
3 SRCS = amidi-plug.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
4 i_vfslayer.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
5 i_midi.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
6 i_backend.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
7 i_configure.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
8 i_configure-ap.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
9 i_configure-alsa.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
10 i_configure-fluidsynth.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
11 i_configure-dummy.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
12 i_utils.c \ |
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
13 i_fileinfo.c |
17 | 14 |
2018
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2017
diff
changeset
|
15 SUBDIRS = pcfg ${AMIDIPLUG_BACKENDS} |
17 | 16 |
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
17 include ../../buildsys.mk |
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
18 include ../../extra.mk |
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
19 |
2019
bf63252fb1fb
Pushed down the amidi-plug dir into the Input dir.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2018
diff
changeset
|
20 plugindir := ${plugindir}/${INPUT_PLUGIN_DIR} |
bf63252fb1fb
Pushed down the amidi-plug dir into the Input dir.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2018
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 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${GMODULE_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:
2019
diff
changeset
|
24 -DAMIDIPLUGBACKENDDIR=\"${plugindir}/${AMIDIPLUG_BACKEND_DIR}\" -I../.. |
2018
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2017
diff
changeset
|
25 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} ${GMODULE_LIBS} -lpthread ./pcfg/libpcfg.a |