Make.config.template
Aus VDR Wiki
(Unterschied zwischen Versionen)
Zeile 1: | Zeile 1: | ||
− | <pre># | + | {{Box Datei|$VDRDIR/Make.config.template| |
+ | <pre> | ||
+ | # | ||
# User defined Makefile options for the Video Disk Recorder | # User defined Makefile options for the Video Disk Recorder | ||
# | # | ||
Zeile 7: | Zeile 9: | ||
# how to reach the author. | # how to reach the author. | ||
# | # | ||
− | # $Id: Make.config.template 1. | + | # $Id: Make.config.template 1.5 2005/07/31 11:35:28 kls Exp $ |
### The C compiler and options: | ### The C compiler and options: | ||
Zeile 15: | Zeile 17: | ||
CXX = g++ | CXX = g++ | ||
− | CXXFLAGS = -g -O2 -Wall -Woverloaded-virtual | + | CXXFLAGS = -fPIC -g -O2 -Wall -Woverloaded-virtual |
### The directory environment: | ### The directory environment: | ||
Zeile 25: | Zeile 27: | ||
PLUGINDIR= ./PLUGINS | PLUGINDIR= ./PLUGINS | ||
PLUGINLIBDIR= $(PLUGINDIR)/lib | PLUGINLIBDIR= $(PLUGINDIR)/lib | ||
− | VIDEODIR = /video</pre> | + | VIDEODIR = /video |
+ | |||
+ | ### The remote control: | ||
+ | |||
+ | LIRC_DEVICE = /dev/lircd | ||
+ | RCU_DEVICE = /dev/ttyS1 | ||
+ | </pre> | ||
+ | }} |
Version vom 22. August 2005, 22:34 Uhr
# # User defined Makefile options for the Video Disk Recorder # # Copy this file to 'Make.config' and change the parameters as necessary. # # See the main source file 'vdr.c' for copyright information and # how to reach the author. # # $Id: Make.config.template 1.5 2005/07/31 11:35:28 kls Exp $ ### The C compiler and options: CC = gcc CFLAGS = -O2 CXX = g++ CXXFLAGS = -fPIC -g -O2 -Wall -Woverloaded-virtual ### The directory environment: DVBDIR = ../DVB MANDIR = /usr/local/man BINDIR = /usr/local/bin PLUGINDIR= ./PLUGINS PLUGINLIBDIR= $(PLUGINDIR)/lib VIDEODIR = /video ### The remote control: LIRC_DEVICE = /dev/lircd RCU_DEVICE = /dev/ttyS1