view src/adplug/Makefile @ 486:3e41d8efe752 trunk

[svn] - flac 113 plugin: moved to vfs for file detection and playback; plays http files as well, but it does not use flac/http.c code to do it, so there's no metadata parsing and flac http options are ignored; flac tags are still read directly from stdio, with checks that prevents tag reading if file is not stdio-readable
author giacomo
date Sun, 21 Jan 2007 10:40:40 -0800
parents ad8e44bcdf8a
children 550c9e382cf8
line wrap: on
line source

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

SUBDIRS = core
OBJECTIVE_LIBS = libadplug$(SHARED_SUFFIX)

LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)

LIBADD = ./core/libadplugcore.a $(BINIO_LIBS) -lstdc++

SOURCES = adplug-xmms.cc

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

CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(BINIO_CFLAGS) \
	-I../../intl -I../.. -I./core
CXXFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(BINIO_CFLAGS) \
	-I../../intl -I../.. -I./core

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