diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-03-13 18:07:20 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-03-13 18:07:20 +0100 |
commit | 50e489dc4479a1ff04b313734467f6668743abdb (patch) | |
tree | a3b8d77a76a993e5c6fbda6dcc2c9525b61aa7fa /Makefile | |
parent | d15b59582da7115def27ab32fa239a5dcabadec1 (diff) | |
download | skin-flatplus-50e489dc4479a1ff04b313734467f6668743abdb.tar.gz skin-flatplus-50e489dc4479a1ff04b313734467f6668743abdb.tar.bz2 |
fix makefile vdrlogo and plgcfg, update MV_Themes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 33 |
1 files changed, 17 insertions, 16 deletions
@@ -11,6 +11,23 @@ # PLUGIN = skinflatplus +# define vdrlogo for menu topbar +# if not defined vdrlogo_default will be used +# define here or use make VDRLOGO=\"vdrlogo_default\" +# available logos are +# vdrlogo_debian +# vdrlogo_default +# vdrlogo_easyvdr +# vdrlogo_gen2vdr +# vdrlogo_shine +# vdrlogo_xubuntu +# vdrlogo_xubuntu2 +# vdrlogo_yavdr +VDRLOGO = vdrlogo_default + +# -DDEBUGIMAGELOADTIME + + ### 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') @@ -50,22 +67,6 @@ SOFILE = libvdr-$(PLUGIN).so INCLUDES += $(shell pkg-config --cflags Magick++) -# define vdrlogo for menu topbar -# if not defined vdrlogo_default will be used -# define here or use make VDRLOGO=\"vdrlogo_default\" -# available logos are -# vdrlogo_debian -# vdrlogo_default -# vdrlogo_easyvdr -# vdrlogo_gen2vdr -# vdrlogo_shine -# vdrlogo_xubuntu -# vdrlogo_xubuntu2 -# vdrlogo_yavdr -VDRLOGO = vdrlogo_default - -# -DDEBUGIMAGELOADTIME - DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -DVDRLOGO=\"$(VDRLOGO)\" LIBS += $(shell pkg-config --libs Magick++) |