annotate src/amidi-plug/Makefile @ 613:85a70ace8c02 trunk

[svn] - press F5 on not yet played stream no longer hangs. - some cleanups.
author yaz
date Wed, 07 Feb 2007 01:10:37 -0800
parents 550c9e382cf8
children f19e6748d8eb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
1 include ../../mk/rules.mk
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
2 include ../../mk/init.mk
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
3
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
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
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
6
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
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
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
10 i_configure-fluidsynth.h i_configure-dummy.h \
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
11 i_fileinfo.h i_utils.h i_common.h \
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
12 amidi-plug-icon.xpm amidi-plug.logo.xpm \
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
13 amidi-plug.midiicon.xpm
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
14
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
15 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
16
578
550c9e382cf8 [svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents: 437
diff changeset
17 LIBADD = $(GTK_LIBS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(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
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
19 i_configure.c i_configure-ap.c i_configure-alsa.c \
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
20 i_configure-fluidsynth.c i_configure-dummy.c \
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
21 i_utils.c i_fileinfo.c
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
22
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
23 OBJECTS = ${SOURCES:.c=.o}
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
24
578
550c9e382cf8 [svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents: 437
diff changeset
25 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(GMODULE_CFLAGS) -DAMIDIPLUGBACKENDDIR=\"$(AMIDIPLUGBACKENDDIR)\" \
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
26 -I../../intl -I../..
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
27
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
28 include ../../mk/objective.mk