Mercurial > audlegacy-plugins
annotate src/amidi-plug/Makefile @ 1923:bf6a0330c939
- Properly check if we could read the use_proxy property from the config
author | Ralf Ertzinger <ralf@skytale.net> |
---|---|
date | Sun, 30 Sep 2007 21:33:58 +0200 |
parents | 5af55c925d6e |
children | e2904348f154 |
rev | line source |
---|---|
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
1 PLUGIN = amidi-plug$(PLUGIN_SUFFIX) |
40
f15e55bc0e60
[svn] - fixed some issues for amidiplug compilation after migraton in audacious-plugins (backends were not compiled and amidiplug was uselessly installed twice on make install)
giacomo
parents:
17
diff
changeset
|
2 SUBDIRS = pcfg $(AMIDIPLUG_BACKENDS) |
17 | 3 |
4 noinst_HEADERS = amidi-plug.h i_backend.h i_midi.h i_midievent.h \ | |
240
59d793da5395
[svn] - import amidi-plug 0.7 (among new features, a transposer to play midi files in different keys)
giacomo
parents:
40
diff
changeset
|
5 i_vfslayer.h i_configure.h i_configure_private.h \ |
437
e1c6b223431e
[svn] - amidiplug: on midi backend init, pass a function that helps the backend to get the location of amidi-plug.conf
giacomo
parents:
388
diff
changeset
|
6 i_configure_file.h i_configure-ap.h i_configure-alsa.h \ |
17 | 7 i_configure-fluidsynth.h i_configure-dummy.h \ |
8 i_fileinfo.h i_utils.h i_common.h \ | |
9 amidi-plug-icon.xpm amidi-plug.logo.xpm \ | |
10 amidi-plug.midiicon.xpm | |
11 | |
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
12 plugindir = audacious/$(INPUT_PLUGIN_DIR) |
17 | 13 |
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
14 SRCS = amidi-plug.c i_vfslayer.c i_midi.c i_backend.c \ |
17 | 15 i_configure.c i_configure-ap.c i_configure-alsa.c \ |
16 i_configure-fluidsynth.c i_configure-dummy.c \ | |
17 i_utils.c i_fileinfo.c | |
18 | |
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
19 include ../../buildsys.mk |
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
20 include ../../extra.mk |
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
21 |
17 | 22 OBJECTS = ${SOURCES:.c=.o} |
23 | |
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
24 EXT_DEPS = ./pcfg/libpcfg.a |
894 | 25 |
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
26 CFLAGS += $(PLUGIN_CFLAGS) |
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
27 CPPFLAGS += $(PLUGIN_CPPFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(GMODULE_CFLAGS) $(MOWGLI_CFLAGS) \ |
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
28 -DAMIDIPLUGBACKENDDIR=\"$(AMIDIPLUGBACKENDDIR)\" -I../../intl -I../.. |
17 | 29 |
1899
5af55c925d6e
amidi-plug: partial transition to new build system
William Pitcock <nenolod@atheme.org>
parents:
894
diff
changeset
|
30 LIBS += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(GMODULE_LIBS) -lpthread ./pcfg/libpcfg.a |