diff options
author | lordjaxom <lordjaxom> | 2004-06-05 18:06:22 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-05 18:06:22 +0000 |
commit | 6094765d94e4caaf0813039dff826b731f277753 (patch) | |
tree | fed79334167f26d5a81a6cae9be3f1341375a36f /Makefile | |
parent | e0c2ee1d37c0f213f22a04df71710bebe3526f85 (diff) | |
download | vdr-plugin-text2skin-6094765d94e4caaf0813039dff826b731f277753.tar.gz vdr-plugin-text2skin-6094765d94e4caaf0813039dff826b731f277753.tar.bz2 |
- added scrollable texts and "SymbolScrollUp" and "SymbolScrollDown"v0.0.1
- added "MenuText", "MenuEventTitle", "MenuEventShortText",
"MenuEventDescription", "MenuEventTime", "MenuRecording",
"SymbolEventRunning", "SymbolEventTimer" and "SymbolEventVPS"
- implemented image caching
- added english and german README
- removed some workarounds, and added a patch to vdr to the tree (will be
included in 1.3.10)
- fixed two bugs when displaying replay symbols
- implemented tabbed texts in menu
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 27 |
1 files changed, 16 insertions, 11 deletions
@@ -1,15 +1,16 @@ -# -# Makefile for a Video Disk Recorder plugin -# -# $Id: Makefile,v 1.5 2004/06/02 20:43:05 lordjaxom Exp $ +# exchange the comments on the following to lines if you would like to use +# Imlib2 for loading images. BEWARE that you can not use GraphTFT together with +# Text2Skin if you use Imlib2! (That's why I actually implemented ImageMagick) -# disable in case you don't want to install imlib -# in that case, you will not be able to load other files than simple xpms +HAVE_IMAGEMAGICK=1 # HAVE_IMLIB2=1 -# disable in case you don't want to install ImageMagick -# in that case, you will not be able to load other files than simple xpms -HAVE_IMAGEMAGICK=1 + +# DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU'RE DOING +# ------------------------------------------------------------- +# +# $Id: Makefile,v 1.7 2004/06/05 16:52:44 lordjaxom Exp $ +# # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -19,7 +20,7 @@ PLUGIN = text2skin ### The version number of this plugin (taken from the main source file): -VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g') +VERSION = $(shell grep 'const char \*cText2SkinPlugin::VERSION *=' $(PLUGIN).c | awk '{ print $$5 }' | sed -e 's/[";]//g') ### The C++ compiler and options: @@ -58,6 +59,10 @@ ifdef HAVE_IMAGEMAGICK LIBS += -lMagick++ endif +ifdef DEBUG + DEFINES += -DDEBUG +endif + INCLUDES += -I$(VDRDIR)/include -I$(DVBDIR)/include DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' @@ -65,7 +70,7 @@ DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' ### The object files (add further files here): OBJS = $(PLUGIN).o loader.o data.o display.o render.o common.o bitmap.o \ - file.o i18n.o theme.o + file.o i18n.o theme.o cache.o ### Implicit rules: |