comparison src/amidi-plug/backend-fluidsynth/Makefile @ 2005:e2904348f154

Converted amidi-plug backends to the new build system.
author Eugene Paskevich <eugene@raptor.kiev.ua>
date Tue, 09 Oct 2007 22:39:32 +0300
parents f19e6748d8eb
children a56a26a5f233
comparison
equal deleted inserted replaced
2004:5abb9030e8a7 2005:e2904348f154
1 include ../../../mk/rules.mk 1 PLUGIN = ap-fluidsynth$(PLUGIN_SUFFIX)
2 include ../../../mk/init.mk 2 plugindir = audacious/$(AMIDIPLUG_BACKEND_DIR)
3 3
4 noinst_HEADERS = b-fluidsynth.h b-fluidsynth-config.h backend-fluidsynth-icon.xpm 4 noinst_HEADERS = b-fluidsynth.h b-fluidsynth-config.h backend-fluidsynth-icon.xpm
5 5
6 CFLAGS += $(PICFLAGS) $(GLIB_CFLAGS) $(FLUIDSYNTH_CFLAGS) -I../../.. 6 SRCS = b-fluidsynth.c
7 7
8 libdir = $(AMIDIPLUGBACKENDDIR) 8 include ../../../buildsys.mk
9 include ../../../extra.mk
9 10
10 OBJECTIVE_LIBS = ap-fluidsynth$(SHARED_SUFFIX) 11 CFLAGS += $(PLUGIN_CFLAGS) $(FLUIDSYNTH_CFLAGS)
11 12 CPPFLAGS += $(PLUGIN_CPPFLAGS) $(FLUIDSYNTH_CFLAGS) $(GLIB_CFLAGS) -I../../..
12 LIBADD = -lm $(GLIB_LIBS) $(FLUIDSYNTH_LIBS) ../pcfg/libpcfg.a 13 LIBS += $(FLUIDSYNTH_LIBS) ../pcfg/libpcfg.a
13 SOURCES = b-fluidsynth.c
14
15 OBJECTS = ${SOURCES:.c=.o}
16
17 LIBDEP = ../pcfg/libpcfg.a
18
19 include ../../../mk/objective.mk