diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-06 23:46:40 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-06 23:46:40 +0300 |
commit | 548e0a6bc35d4c776039f7467c0d67eabf9ef46a (patch) | |
tree | ff9ecf6914accab0ee64793672cbdc5aeefa01d1 /Makefile | |
parent | 61b085f1d12ef86807f779f57671fa1e7a5a14c0 (diff) | |
download | vdr-plugin-epgfixer-548e0a6bc35d4c776039f7467c0d67eabf9ef46a.tar.gz vdr-plugin-epgfixer-548e0a6bc35d4c776039f7467c0d67eabf9ef46a.tar.bz2 |
Fix compiling with g++-4.7. Fix and improve Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -12,7 +12,8 @@ PLUGIN = epgfixer ### 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 'static const char VERSION\[\] *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g') +GITTAG = $(shell git describe --always 2>/dev/null) ### The C++ compiler and options: @@ -55,6 +56,10 @@ INCLUDES += -I$(VDRDIR)/include DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' +ifneq ($(strip $(GITTAG)),) +DEFINES += -DGITVERSION='"-GIT-$(GITTAG)"' +endif + ### The object files (add further files here): OBJS = $(PLUGIN).o charset.o config.o epghandler.o regexp.o setup_menu.o tools.o @@ -126,5 +131,4 @@ clean: @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ $(PODIR)/*.mo $(PODIR)/*.pot cppcheck: $(OBJS) - @cppcheck --enable=information,style,unusedFunction -v -f $(OBJS:%.o=%.c) - + @cppcheck --enable=information,style,unusedFunction -v -f $(OBJS:%.o=%.c) |