diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-09-17 22:23:40 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-09-17 22:23:40 +0000 |
commit | 721f6213cc1343e4ab613a89be55d37dd0780244 (patch) | |
tree | f778a1989c106845834ead6be9fa0e5e5e0e3e0d /Makefile | |
parent | 5f3d9f1f80af84c71baed2fd9108aa1494ecaba5 (diff) | |
download | vdr-plugin-live-721f6213cc1343e4ab613a89be55d37dd0780244.tar.gz vdr-plugin-live-721f6213cc1343e4ab613a89be55d37dd0780244.tar.bz2 |
- Moved images from compiled in image dir to data dir 'img'.
- Fixed MapUrl entries to the new image location
- Adapted some pages for the new image locations.
- Added a preload functionalty to fill file cache at plugin startup.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.49 2007/09/02 18:42:07 winni Exp $ +# $Id: Makefile,v 1.50 2007/09/17 22:23:40 tadi Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -57,16 +57,15 @@ export DEFINES LIBS += httpd/libhttpd.a -SUBDIRS = httpd pages css images javascript +SUBDIRS = httpd pages css javascript ### The object files (add further files here): 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 preload.o -WEBLIBS = pages/libpages.a css/libcss.a images/libimages.a \ - javascript/libjavascript.a +WEBLIBS = pages/libpages.a css/libcss.a javascript/libjavascript.a ### Default rules: |