summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-05-31 23:44:01 +0000
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-05-31 23:44:01 +0000
commit4bb2cc172549bcf9f86a94e5d3d0d5ade5f91dfe (patch)
tree1594cf050f0f23da64c41b02d739a9e4e1808e21 /Makefile
parent5d74b90e216827453c87eeb0addae5bb081c40f5 (diff)
downloadvdr-plugin-live-4bb2cc172549bcf9f86a94e5d3d0d5ade5f91dfe.tar.gz
vdr-plugin-live-4bb2cc172549bcf9f86a94e5d3d0d5ade5f91dfe.tar.bz2
- Added doc/ChangeLog
- Added doc/css-themeing.txt - Implemented support for site wide style overrides. Fixes Bug #339 - Updated all pages to use the override mechanism. - Added needed files to Makefile - Introduced USRDIR configuration variable to Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b5ceca2..861d2dc 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile,v 1.38 2007/05/30 17:30:00 winni Exp $
+# $Id: Makefile,v 1.39 2007/05/31 23:44:01 tadi Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -33,6 +33,7 @@ LIBS += $(shell tntnet-config --libs)
VDRDIR ?= ../../..
LIBDIR ?= ../../lib
TMPDIR ?= /tmp
+USRDIR ?= /usr/share/vdr-plugin-$(PLUGIN)
### Allow user defined options to overwrite defaults:
@@ -51,10 +52,10 @@ PACKAGE = vdr-$(ARCHIVE)
INCLUDES += -I$(VDRDIR)/include -Ihttpd
-DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
+DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -DUSRDIR='"$(USRDIR)"'
export DEFINES
-LIBS += httpd/libhttpd.a
+LIBS += httpd/libhttpd.a
SUBDIRS = httpd pages css images javascript
@@ -62,7 +63,7 @@ SUBDIRS = httpd pages css images javascript
PLUGINOBJS = $(PLUGIN).o thread.o tntconfig.o setup.o i18n.o timers.o \
tools.o recordings.o tasks.o status.o epg_events.o epgsearch.o \
- grab.o md5.o
+ grab.o md5.o filecache.o
WEBLIBS = pages/libpages.a css/libcss.a images/libimages.a \
javascript/libjavascript.a