summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorandreas 'randy' weinberger <vdr@smue.org>2010-03-02 19:02:37 +0100
committerandreas 'randy' weinberger <vdr@smue.org>2010-03-02 19:02:37 +0100
commit0e8291c3e90f3ff4514bfab2c7956d0c4d1c1859 (patch)
treed84116e414668ba5a4592587a390379016c67d34 /Makefile
parent5a75c8d9d56199dba452c1dc8fe5e8df84a3e7c2 (diff)
downloadvdr-plugin-graphlcd-0e8291c3e90f3ff4514bfab2c7956d0c4d1c1859.tar.gz
vdr-plugin-graphlcd-0e8291c3e90f3ff4514bfab2c7956d0c4d1c1859.tar.bz2
modified for vdr-1.7.13
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 42ee279..1df49b8 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' plugin.c | awk '{ print
### The C++ compiler and options:
CXX ?= g++
-CXXFLAGS ?= -g -Wall -Woverloaded-virtual
+CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
### The directory environment:
@@ -30,6 +30,10 @@ TMPDIR = /tmp
export INSTALLPREFIX = /usr
export INSTALLDOCDIR = $(INSTALLPREFIX)/share/doc
+### Make sure that necessary options are included:
+
+include $(VDRDIR)/Make.global
+
### Allow user defined options to overwrite defaults:
-include $(VDRDIR)/Make.config