17
|
1 include ../../mk/rules.mk
|
|
2 include ../../mk/init.mk
|
|
3
|
|
4 OBJECTIVE_LIBS = libamidi-plug$(SHARED_SUFFIX)
|
|
5 SUBDIRS = pcfg
|
|
6
|
|
7 noinst_HEADERS = amidi-plug.h i_backend.h i_midi.h i_midievent.h \
|
|
8 i_configure.h i_configure_private.h \
|
|
9 i_configure-ap.h i_configure-alsa.h \
|
|
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
|
|
17 LIBADD = $(GTK_LIBS) $(GMODULE_LIBS) -lpthread ./pcfg/libpcfg.a
|
|
18 SOURCES = amidi-plug.c i_midi.c i_backend.c \
|
|
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
|
|
25 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GMODULE_CFLAGS) -DAMIDIPLUGBACKENDDIR=\"$(AMIDIPLUGBACKENDDIR)\" \
|
|
26 -I../../intl -I../..
|
|
27
|
|
28 include ../../mk/objective.mk
|