view src/modplug/Makefile @ 516:522acbb51ecc trunk

[svn] - flac 113 plugin: get rid of http.c and http.h stuff in flac 113 as well
author giacomo
date Mon, 22 Jan 2007 09:08:16 -0800
parents 225913a2a9ae
children 550c9e382cf8
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) -I.. -I../.. -I../../intl
CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) -I.. -I../.. -I../../intl
LIBADD  = $(GTK_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