Mercurial > audlegacy-plugins
annotate src/amidi-plug/Makefile @ 569:d401f87f89f7 trunk
[svn] - added Audacious OSD, yet-another-written-from-scratch plugin to display OSD, based on Ghosd library; currently untied from configure, to compile it you have to run make in its directory; will be added to configure after some testing
author | giacomo |
---|---|
date | Mon, 29 Jan 2007 06:40:04 -0800 |
parents | e1c6b223431e |
children | 550c9e382cf8 |
rev | line source |
---|---|
17 | 1 include ../../mk/rules.mk |
2 include ../../mk/init.mk | |
3 | |
4 OBJECTIVE_LIBS = libamidi-plug$(SHARED_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
|
5 SUBDIRS = pcfg $(AMIDIPLUG_BACKENDS) |
17 | 6 |
7 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
|
8 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
|
9 i_configure_file.h i_configure-ap.h i_configure-alsa.h \ |
17 | 10 i_configure-fluidsynth.h i_configure-dummy.h \ |
11 i_fileinfo.h i_utils.h i_common.h \ | |
12 amidi-plug-icon.xpm amidi-plug.logo.xpm \ | |
13 amidi-plug.midiicon.xpm | |
14 | |
15 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
16 | |
388 | 17 LIBADD = $(GTK_LIBS) $(GMODULE_LIBS) -lpthread ./pcfg/libpcfg.a |
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
|
18 SOURCES = amidi-plug.c i_vfslayer.c i_midi.c i_backend.c \ |
17 | 19 i_configure.c i_configure-ap.c i_configure-alsa.c \ |
20 i_configure-fluidsynth.c i_configure-dummy.c \ | |
21 i_utils.c i_fileinfo.c | |
22 | |
23 OBJECTS = ${SOURCES:.c=.o} | |
24 | |
388 | 25 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GMODULE_CFLAGS) -DAMIDIPLUGBACKENDDIR=\"$(AMIDIPLUGBACKENDDIR)\" \ |
17 | 26 -I../../intl -I../.. |
27 | |
28 include ../../mk/objective.mk |