updated on Wed Jan 11 08:01:35 UTC 2012
[aur-mirror.git] / vdr / Make.config.vdr-1.6.0
blob7f9122c73010845c0b9ed00879bfa89c4f0df94d
2 # User defined Makefile options for the Video Disk Recorder
4 # Copy this file to 'Make.config' and change the parameters as necessary.
6 # See the main source file 'vdr.c' for copyright information and
7 # how to reach the author.
9 # $Id: Make.config.template 1.16 2008/01/13 12:54:09 kls Exp $
11 ### The C compiler and options:
13 CC       = gcc
14 CFLAGS   = -g -O2 -Wall
16 CXX      = g++
17 CXXFLAGS = -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
19 ifdef PLUGIN
20 CFLAGS   += -fPIC
21 CXXFLAGS += -fPIC
22 endif
24 ### The directory environment:
26 #DVBDIR       = /usr/src/v4l-dvb/linux
27 MANDIR       = /usr/share/man
28 BINDIR       = /usr/bin
30 LOCDIR       = /usr/share/locale
31 PLUGINDIR    = ./PLUGINS
32 PLUGINLIBDIR = /usr/lib/vdr
33 VIDEODIR     = /var/spool/video
34 CONFDIR      = /etc/vdr
36 ### The remote control:
37 # NB. From lirc 0.8.6 on the lirc socket is no longer /dev/lirc
38 LIRC_DEVICE = /var/run/lirc/lircd
39 RCU_DEVICE  = /dev/ttyS1
41 ## Define if you want vdr to not run as root
42 VDR_USER = vdr
44 ### You don't need to touch the following:
46 ifdef DVBDIR
47 INCLUDES += -I$(DVBDIR)/include
48 endif