1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
AM_CFLAGS=-DLOCALE_DIR=\"${datadir}/locale\" \
-DPLUGIN_DIR=\"${SINGIT_INSTALL_DIR}\"
SUBDIRS = include dialogs editor sound tagger widgets control . \
displayer data
lib_LTLIBRARIES = libxmms_singit.la
libdir = $(SINGIT_INSTALL_DIR)
libxmms_singit_la_LDFLAGS = -avoid-version -module ${GHTTP_LDFLAGS}
libxmms_singit_la_LIBADD = $(XMMS_LIBS) $(EFENCE_LIB) $(SDL_LIBS) ${XML_LIBS} \
./dialogs/libdialogs.la ./editor/libeditor.la ./widgets/libwidgets.la \
./sound/libsound.la ./tagger/libtagger.la ./control/libcontrol.la
INCLUDES = -I$(top_builddir)/intl -I./dialogs -I./editor -I./include \
-I./sound -I./tagger -I./widgets -I$(top_builddir) -I$(top_srcdir)
if HAVE_ID3_AM
SINGIT_SONG = singit_song.c singit_song_text.c singit_song_id3v2xx.c \
singit_song_midi.c
else
SINGIT_SONG = singit_song.c singit_song_text.c singit_song_midi.c
endif
if CODE_DEBUG_AM
CODE_DEBUG=singit_debug.c
endif
FUNCTIONS = singit_sha.c singit_tools.c singit_plugin_scanner.c \
singit_plugin_data.c singit_main_config.c singit_config_gen.c \
singit_file_info.c singit_framerate_counter.c ltdl_wrapper.c \
singit_config_xmms.c singit_marshallers.c singit_singleton.c
libxmms_singit_la_SOURCES = main.c singit_main.c singit_main_status.c \
singit_main_check.c singit_main_display.c $(CODE_DEBUG) $(FUNCTIONS) \
$(SINGIT_SONG)
AM_CPPFLAGS=${XML_CFLAGS}
|