diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-15 12:39:35 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-15 12:39:35 +0200 |
commit | 12ea50fceba47cbfde1e11da4fff9aa5f5b2aeda (patch) | |
tree | d5a615c30e728df15c8117635e89be5f15b560ed /PLUGINS/src/servicedemo/Makefile | |
parent | b49df33917938bac6b57d7a122133cbe0b6b3d39 (diff) | |
download | vdr-12ea50fceba47cbfde1e11da4fff9aa5f5b2aeda.tar.gz vdr-12ea50fceba47cbfde1e11da4fff9aa5f5b2aeda.tar.bz2 |
Removed DVBDIR from Makefile; it's now defined in Make.config if necessary
Diffstat (limited to 'PLUGINS/src/servicedemo/Makefile')
-rw-r--r-- | PLUGINS/src/servicedemo/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/PLUGINS/src/servicedemo/Makefile b/PLUGINS/src/servicedemo/Makefile index 675a86db..77665eff 100644 --- a/PLUGINS/src/servicedemo/Makefile +++ b/PLUGINS/src/servicedemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.2 2005/11/11 13:20:14 kls Exp $ +# $Id: Makefile 1.3 2006/04/15 11:59:07 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -21,7 +21,6 @@ CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual ### The directory environment: -DVBDIR = ../../../../DVB VDRDIR = ../../.. LIBDIR = ../../lib TMPDIR = /tmp @@ -41,7 +40,7 @@ PACKAGE = vdr-$(ARCHIVE) ### Includes and Defines (add further entries here): -INCLUDES += -I$(VDRDIR)/include -I$(DVBDIR)/include +INCLUDES += -I$(VDRDIR)/include DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' |