view src/modplug/Makefile @ 585:2d20bc58a290 trunk

[svn] tweak xspf plugin to conform xspf specification version 1. - arrange the order of elements to pass several validators. - specify character set and encoding as UTF-8. - now urls beginning with file:// can be used. - prepend file:// onto local file entry to save (tentative).
author yaz
date Tue, 30 Jan 2007 23:14:02 -0800
parents 550c9e382cf8
children f19e6748d8eb
line wrap: on
line source

include ../../mk/rules.mk
include ../../mk/init.mk

OBJECTIVE_LIBS = libmodplug$(SHARED_SUFFIX)
SUBDIRS = archive gui

LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)

CXXFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I.. -I../.. -I../../intl
CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I.. -I../.. -I../../intl
LIBADD  = $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -lstdc++ ./archive/libarchive.a ./gui/libgui.a
SOURCES.plugin  = plugin.cxx modplugbmp.cxx
SOURCES.core = tables.cxx         \
               sndmix.cxx         \
               sndfile.cxx        \
               snd_fx.cxx         \
               snd_flt.cxx        \
               snd_dsp.cxx        \
               fastmix.cxx        \
               mmcmp.cxx          \
               load_xm.cxx        \
               load_wav.cxx       \
               load_umx.cxx       \
               load_ult.cxx       \
               load_stm.cxx       \
               load_s3m.cxx       \
               load_ptm.cxx       \
               load_okt.cxx       \
               load_mtm.cxx       \
               load_mod.cxx       \
               load_med.cxx       \
               load_mdl.cxx       \
               load_it.cxx        \
               load_far.cxx       \
               load_dsm.cxx       \
               load_dmf.cxx       \
               load_dbm.cxx       \
               load_ams.cxx       \
               load_amf.cxx       \
               load_669.cxx       \
               load_j2b.cxx       \
               load_mt2.cxx       \
               load_psm.cxx       \
               modplug.cxx

SOURCES = ${SOURCES.core} ${SOURCES.plugin}

OBJECTS = ${SOURCES:.cxx=.o}

include ../../mk/objective.mk