diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-06-06 15:44:57 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-06-06 15:44:57 +0000 |
commit | 556b5fa554b200b1c85321e52bce2e5471d83e27 (patch) | |
tree | 80ed8be0d302b914f5192081b8d696d5cf108f4c /Makefile | |
parent | f7dfeb6fa3609a95cc7a17cf184d9249805fda6f (diff) | |
download | vdr-plugin-live-556b5fa554b200b1c85321e52bce2e5471d83e27.tar.gz vdr-plugin-live-556b5fa554b200b1c85321e52bce2e5471d83e27.tar.bz2 |
- Use GetConfigDir instead of USRDIR define.
- Unification of table markup (still needs some tweaking).
- Adaption of styles.css to new table CSS classes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.41 2007/06/01 19:57:29 lordjaxom Exp $ +# $Id: Makefile,v 1.42 2007/06/06 15:44:57 tadi Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -33,7 +33,6 @@ LIBS += $(shell tntnet-config --libs) VDRDIR ?= ../../.. LIBDIR ?= ../../lib TMPDIR ?= /tmp -USRDIR ?= /usr/share/vdr-plugin-$(PLUGIN) ### Allow user defined options to overwrite defaults: @@ -52,7 +51,7 @@ PACKAGE = vdr-$(ARCHIVE) INCLUDES += -I$(VDRDIR)/include -Ihttpd -DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -DUSRDIR='"$(USRDIR)"' +DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' export DEFINES LIBS += httpd/libhttpd.a @@ -63,7 +62,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 filecache.o livefeatures.o + grab.o md5.o filecache.o livefeatures.o WEBLIBS = pages/libpages.a css/libcss.a images/libimages.a \ javascript/libjavascript.a |