diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-24 07:20:45 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-24 07:20:45 +0000 |
commit | 131b8d2d9b2817e797525f15521662a9485be636 (patch) | |
tree | 3475843566802274d3c136794a5164d27b81369c /Makefile | |
parent | 28dc5ea3134af9436057ef61114004e04ba66543 (diff) | |
download | vdr-plugin-live-131b8d2d9b2817e797525f15521662a9485be636.tar.gz vdr-plugin-live-131b8d2d9b2817e797525f15521662a9485be636.tar.bz2 |
- removed debug switch '-g' for smaller libs (please use your own Make.config with '-g' for debugging purposes)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.35 2007/05/24 06:59:05 winni Exp $ +# $Id: Makefile,v 1.36 2007/05/24 07:20:45 winni Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -20,7 +20,7 @@ VERSION = $(shell grep 'const char \*Plugin::VERSION *=' $(PLUGIN).cpp | awk '{ CXX ?= g++ ### tntnet produces some compiler warnings, so we add -Wno-unused-variable -Wno-non-virtual-dtor for nice output ;) -CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-unused-variable -Wno-non-virtual-dtor +CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual -Wno-unused-variable -Wno-non-virtual-dtor LDFLAGS ?= -fPIC -g ECPPC ?= ecppc |