summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-09-07 17:40:47 +0000
committerlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-09-07 17:40:47 +0000
commit653ca204d10b3481670a80769baa3d768bb5f64a (patch)
tree97845708a0991d68ac10ec36618fe5fbd6eb584b /Makefile
parent22cedb0c0bb5345d92b67216f792810e75c75241 (diff)
downloadvdr-plugin-muggle-653ca204d10b3481670a80769baa3d768bb5f64a.tar.gz
vdr-plugin-muggle-653ca204d10b3481670a80769baa3d768bb5f64a.tar.bz2
Merged ogg vorbis player to trunk
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@148 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 870bd6e..d9bf48c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile,v 1.10 2004/08/29 14:39:33 lvw Exp $
+# $Id$
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -21,7 +21,7 @@ CXXFLAGS ?= -O2 -Wall -Woverloaded-virtual -Wno-deprecated -g
### The directory environment:
DVBDIR = ../../../../DVB
-VDRDIR = ../../..
+VDRDIR = /usr/local/src/VDR
LIBDIR = ../../lib
TMPDIR = /tmp
@@ -42,14 +42,14 @@ PACKAGE = vdr-$(ARCHIVE)
INCLUDES += -I$(VDRDIR) -I$(VDRDIR)/include -I$(DVBDIR)/include -I/usr/include/mysql/
-DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
+DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -DHAVE_VORBISFILE
MIFLAGS += -I/usr/include/taglib -ltag -lmysqlclient
### The object files (add further files here):
-OBJS = $(PLUGIN).o i18n.o vdr_menu.o mg_database.o mg_content_interface.o gd_content_interface.o mg_tools.o mg_media.o mg_filters.o mg_playlist.o vdr_decoder_mp3.o vdr_stream.o vdr_decoder.o vdr_player.o vdr_setup.o
+OBJS = $(PLUGIN).o i18n.o vdr_menu.o mg_database.o mg_content_interface.o gd_content_interface.o mg_tools.o mg_media.o mg_filters.o mg_playlist.o vdr_decoder_mp3.o vdr_stream.o vdr_decoder.o vdr_player.o vdr_setup.o vdr_decoder_ogg.o
-LIBS = -lmad -lmysqlclient
+LIBS = -lmad -lmysqlclient -lvorbisfile -lvorbis
### Targets: