diff options
author | andreas 'randy' weinberger <vdr@smue.org> | 2010-03-02 19:02:37 +0100 |
---|---|---|
committer | andreas 'randy' weinberger <vdr@smue.org> | 2010-03-02 19:02:37 +0100 |
commit | 0e8291c3e90f3ff4514bfab2c7956d0c4d1c1859 (patch) | |
tree | d84116e414668ba5a4592587a390379016c67d34 /Makefile | |
parent | 5a75c8d9d56199dba452c1dc8fe5e8df84a3e7c2 (diff) | |
download | vdr-plugin-graphlcd-0e8291c3e90f3ff4514bfab2c7956d0c4d1c1859.tar.gz vdr-plugin-graphlcd-0e8291c3e90f3ff4514bfab2c7956d0c4d1c1859.tar.bz2 |
modified for vdr-1.7.13
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |