2000-02-19 13:36:48 +01:00
|
|
|
#
|
2000-07-23 15:01:31 +02:00
|
|
|
# Makefile for the Video Disk Recorder
|
2000-02-19 13:36:48 +01:00
|
|
|
#
|
2000-04-24 09:46:05 +02:00
|
|
|
# See the main source file 'vdr.c' for copyright information and
|
2000-02-19 13:36:48 +01:00
|
|
|
# how to reach the author.
|
|
|
|
#
|
2012-12-22 12:08:31 +01:00
|
|
|
# $Id: Makefile 2.35 2012/12/22 10:40:31 kls Exp $
|
2001-08-10 16:56:49 +02:00
|
|
|
|
|
|
|
.DELETE_ON_ERROR:
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2012-12-22 12:08:31 +01:00
|
|
|
# Compiler flags:
|
|
|
|
|
2002-12-13 15:06:52 +01:00
|
|
|
CC ?= gcc
|
2012-12-22 12:08:31 +01:00
|
|
|
CFLAGS ?= -g -O3 -Wall
|
2002-07-28 13:25:30 +02:00
|
|
|
|
2002-12-13 15:06:52 +01:00
|
|
|
CXX ?= g++
|
2012-12-19 12:10:28 +01:00
|
|
|
CXXFLAGS ?= $(CFLAGS) -Werror=overloaded-virtual -Wno-parentheses
|
2002-07-28 13:25:30 +02:00
|
|
|
|
2012-12-22 12:08:31 +01:00
|
|
|
CFLAGS += -fPIC
|
|
|
|
CXXFLAGS += -fPIC
|
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
CDEFINES = -D_GNU_SOURCE
|
2012-12-21 11:56:29 +01:00
|
|
|
CDEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
|
2012-12-19 12:10:28 +01:00
|
|
|
|
2012-12-22 12:08:31 +01:00
|
|
|
# Directories:
|
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
CWD := $(shell pwd)
|
2003-12-22 13:29:24 +01:00
|
|
|
LSIDIR = ./libsi
|
2007-08-15 13:49:27 +02:00
|
|
|
DESTDIR ?=
|
|
|
|
PREFIX ?= /usr/local
|
2012-01-18 12:40:17 +01:00
|
|
|
MANDIR ?= $(PREFIX)/share/man
|
|
|
|
BINDIR ?= $(PREFIX)/bin
|
2012-12-19 12:10:28 +01:00
|
|
|
INCDIR ?= $(CWD)/include
|
|
|
|
LOCDIR ?= $(CWD)/locale
|
2011-04-17 13:29:42 +02:00
|
|
|
LIBS = -ljpeg -lpthread -ldl -lcap -lrt $(shell pkg-config --libs freetype2 fontconfig)
|
|
|
|
INCLUDES ?= $(shell pkg-config --cflags freetype2 fontconfig)
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
PLUGINDIR= $(CWD)/PLUGINS
|
|
|
|
LIBDIR = $(PLUGINDIR)/lib
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2012-09-01 14:03:45 +02:00
|
|
|
# By default VDR requires only one single directory to operate:
|
|
|
|
VIDEODIR = /video
|
|
|
|
# See Make.config.template if you want to build VDR according to the FHS ("File system Hierarchy Standard")
|
2002-04-01 12:50:48 +02:00
|
|
|
|
2012-01-18 12:40:17 +01:00
|
|
|
DOXYGEN ?= /usr/bin/doxygen
|
2002-12-15 15:36:02 +01:00
|
|
|
DOXYFILE = Doxyfile
|
|
|
|
|
2011-12-04 14:11:20 +01:00
|
|
|
PCDIR ?= $(firstword $(subst :, , ${PKG_CONFIG_PATH}:$(shell pkg-config --variable=pc_path pkg-config):$(PREFIX)/lib/pkgconfig))
|
|
|
|
|
2002-11-01 14:05:36 +01:00
|
|
|
-include Make.config
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
SILIB = $(LSIDIR)/libsi.a
|
2001-08-15 13:56:11 +02:00
|
|
|
|
2009-12-31 15:38:18 +01:00
|
|
|
OBJS = audio.o channels.o ci.o config.o cutter.o device.o diseqc.o dvbdevice.o dvbci.o\
|
2007-10-12 14:52:30 +02:00
|
|
|
dvbplayer.o dvbspu.o dvbsubtitle.o eit.o eitscan.o epg.o filter.o font.o i18n.o interface.o keys.o\
|
2012-02-27 12:30:45 +01:00
|
|
|
lirc.o menu.o menuitems.o nit.o osdbase.o osd.o pat.o player.o plugin.o\
|
2007-02-25 10:56:29 +01:00
|
|
|
receiver.o recorder.o recording.o remote.o remux.o ringbuffer.o sdt.o sections.o shutdown.o\
|
2012-06-02 13:17:16 +02:00
|
|
|
skinclassic.o skinlcars.o skins.o skinsttng.o sourceparams.o sources.o spu.o status.o svdrp.o themes.o thread.o\
|
2004-05-16 10:35:36 +02:00
|
|
|
timers.o tools.o transfer.o vdr.o videodir.o
|
2000-10-03 10:34:48 +02:00
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
DEFINES += $(CDEFINES)
|
|
|
|
|
2002-12-08 14:30:32 +01:00
|
|
|
ifndef NO_KBD
|
|
|
|
DEFINES += -DREMOTE_KBD
|
2002-01-13 16:57:27 +01:00
|
|
|
endif
|
2005-07-31 11:38:40 +02:00
|
|
|
ifdef REMOTE
|
2000-07-15 12:39:20 +02:00
|
|
|
DEFINES += -DREMOTE_$(REMOTE)
|
2005-07-31 11:38:40 +02:00
|
|
|
endif
|
2006-01-13 16:16:32 +01:00
|
|
|
ifdef VDR_USER
|
|
|
|
DEFINES += -DVDR_USER=\"$(VDR_USER)\"
|
|
|
|
endif
|
2010-09-19 12:36:07 +02:00
|
|
|
ifdef BIDI
|
2011-04-17 13:26:57 +02:00
|
|
|
INCLUDES += $(shell pkg-config --cflags fribidi)
|
2010-09-19 12:36:07 +02:00
|
|
|
DEFINES += -DBIDI
|
2011-04-17 13:26:57 +02:00
|
|
|
LIBS += $(shell pkg-config --libs fribidi)
|
2010-09-19 12:36:07 +02:00
|
|
|
endif
|
2005-07-31 11:38:40 +02:00
|
|
|
|
2011-12-04 14:43:13 +01:00
|
|
|
LIRC_DEVICE ?= /var/run/lirc/lircd
|
2005-07-31 11:38:40 +02:00
|
|
|
|
2012-02-27 12:30:45 +01:00
|
|
|
DEFINES += -DLIRC_DEVICE=\"$(LIRC_DEVICE)\"
|
2003-08-02 14:32:53 +02:00
|
|
|
DEFINES += -DVIDEODIR=\"$(VIDEODIR)\"
|
2007-08-25 08:58:44 +02:00
|
|
|
DEFINES += -DCONFDIR=\"$(CONFDIR)\"
|
2012-09-01 14:03:45 +02:00
|
|
|
DEFINES += -DCACHEDIR=\"$(CACHEDIR)\"
|
|
|
|
DEFINES += -DRESDIR=\"$(RESDIR)\"
|
2012-12-19 12:10:28 +01:00
|
|
|
DEFINES += -DPLUGINDIR=\"$(LIBDIR)\"
|
2007-08-11 12:39:06 +02:00
|
|
|
DEFINES += -DLOCDIR=\"$(LOCDIR)\"
|
2003-08-02 14:32:53 +02:00
|
|
|
|
2012-09-09 09:29:15 +02:00
|
|
|
# Default values for directories:
|
|
|
|
|
|
|
|
CONFDIRDEF = $(firstword $(CONFDIR) $(VIDEODIR))
|
|
|
|
CACHEDIRDEF = $(firstword $(CACHEDIR) $(VIDEODIR))
|
|
|
|
RESDIRDEF = $(firstword $(RESDIR) $(CONFDIRDEF))
|
|
|
|
|
2006-04-16 09:36:10 +02:00
|
|
|
# The version numbers of VDR and the plugin API (taken from VDR's "config.h"):
|
2005-02-13 10:18:07 +01:00
|
|
|
|
2006-04-24 17:53:19 +02:00
|
|
|
VDRVERSION = $(shell sed -ne '/define VDRVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
|
|
|
|
APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
|
2005-02-13 10:18:07 +01:00
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
all: vdr i18n plugins
|
2000-10-03 10:34:48 +02:00
|
|
|
|
|
|
|
# Implicit rules:
|
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
%.o: %.c
|
2002-07-28 13:25:30 +02:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-10-03 10:34:48 +02:00
|
|
|
# Dependencies:
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2002-07-28 13:25:30 +02:00
|
|
|
MAKEDEP = $(CXX) -MM -MG
|
2001-08-31 13:13:30 +02:00
|
|
|
DEPFILE = .dependencies
|
|
|
|
$(DEPFILE): Makefile
|
|
|
|
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
|
|
|
|
2002-05-17 16:29:02 +02:00
|
|
|
-include $(DEPFILE)
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-10-03 10:34:48 +02:00
|
|
|
# The main program:
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
vdr: $(OBJS) $(SILIB)
|
2012-12-19 12:10:28 +01:00
|
|
|
$(CXX) $(CXXFLAGS) -rdynamic $(LDFLAGS) $(OBJS) $(LIBS) $(SILIB) -o vdr
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
# The libsi library:
|
2001-08-15 13:56:11 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
$(SILIB):
|
2012-12-21 10:14:32 +01:00
|
|
|
$(MAKE) --no-print-directory -C $(LSIDIR) CXXFLAGS="$(CXXFLAGS)" DEFINES="$(CDEFINES)" all
|
2001-08-15 13:56:11 +02:00
|
|
|
|
2011-12-04 14:11:20 +01:00
|
|
|
# pkg-config file:
|
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
.PHONY: vdr.pc
|
|
|
|
vdr.pc:
|
2011-12-04 14:11:20 +01:00
|
|
|
@echo "bindir=$(BINDIR)" > $@
|
2012-09-09 09:29:15 +02:00
|
|
|
@echo "configdir=$(CONFDIRDEF)" >> $@
|
2011-12-04 14:11:20 +01:00
|
|
|
@echo "videodir=$(VIDEODIR)" >> $@
|
2012-09-09 09:29:15 +02:00
|
|
|
@echo "cachedir=$(CACHEDIRDEF)" >> $@
|
|
|
|
@echo "resdir=$(RESDIRDEF)" >> $@
|
2012-12-19 12:10:28 +01:00
|
|
|
@echo "libdir=$(LIBDIR)" >> $@
|
|
|
|
@echo "locdir=$(LOCDIR)" >> $@
|
2011-12-04 14:11:20 +01:00
|
|
|
@echo "apiversion=$(APIVERSION)" >> $@
|
2012-12-21 10:14:32 +01:00
|
|
|
@echo "cflags=$(CFLAGS) $(CDEFINES) -I$(INCDIR)" >> $@
|
|
|
|
@echo "cxxflags=$(CXXFLAGS) $(CDEFINES) -I$(INCDIR)" >> $@
|
2011-12-04 14:11:20 +01:00
|
|
|
@echo "" >> $@
|
|
|
|
@echo "Name: VDR" >> $@
|
|
|
|
@echo "Description: Video Disk Recorder" >> $@
|
|
|
|
@echo "URL: http://www.tvdr.de/" >> $@
|
|
|
|
@echo "Version: $(VDRVERSION)" >> $@
|
|
|
|
@echo "Cflags: \$${cflags}" >> $@
|
|
|
|
|
2007-08-11 12:39:06 +02:00
|
|
|
# Internationalization (I18N):
|
|
|
|
|
|
|
|
PODIR = po
|
|
|
|
LOCALEDIR = locale
|
|
|
|
I18Npo = $(wildcard $(PODIR)/*.po)
|
2007-11-04 10:18:45 +01:00
|
|
|
I18Nmsgs = $(addprefix $(LOCALEDIR)/, $(addsuffix /LC_MESSAGES/vdr.mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
|
2007-08-11 12:39:06 +02:00
|
|
|
I18Npot = $(PODIR)/vdr.pot
|
|
|
|
|
|
|
|
%.mo: %.po
|
|
|
|
msgfmt -c -o $@ $<
|
|
|
|
|
|
|
|
$(I18Npot): $(wildcard *.c)
|
2011-05-21 12:40:42 +02:00
|
|
|
xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=VDR --package-version=$(VDRVERSION) --msgid-bugs-address='<vdr-bugs@tvdr.de>' -o $@ `ls $^`
|
2007-08-11 12:39:06 +02:00
|
|
|
|
2007-11-04 10:18:45 +01:00
|
|
|
%.po: $(I18Npot)
|
2012-01-14 13:02:21 +01:00
|
|
|
msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $<
|
2007-11-04 10:18:45 +01:00
|
|
|
@touch $@
|
2007-08-11 12:39:06 +02:00
|
|
|
|
2007-11-04 10:18:45 +01:00
|
|
|
$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr.mo: $(PODIR)/%.mo
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
cp $< $@
|
|
|
|
|
|
|
|
.PHONY: i18n
|
2012-12-19 12:10:28 +01:00
|
|
|
i18n: $(I18Nmsgs) $(I18Npot)
|
2007-08-11 12:39:06 +02:00
|
|
|
|
|
|
|
install-i18n:
|
2007-08-15 13:49:27 +02:00
|
|
|
@mkdir -p $(DESTDIR)$(LOCDIR)
|
|
|
|
@(cd $(LOCALEDIR); cp -r --parents * $(DESTDIR)$(LOCDIR))
|
2007-08-11 12:39:06 +02:00
|
|
|
|
2002-05-09 16:26:56 +02:00
|
|
|
# The 'include' directory (for plugins):
|
|
|
|
|
|
|
|
include-dir:
|
|
|
|
@mkdir -p include/vdr
|
|
|
|
@(cd include/vdr; for i in ../../*.h; do ln -fs $$i .; done)
|
2004-01-18 14:18:11 +01:00
|
|
|
@mkdir -p include/libsi
|
|
|
|
@(cd include/libsi; for i in ../../libsi/*.h; do ln -fs $$i .; done)
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
# Plugins:
|
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
plugins: include-dir vdr.pc
|
2006-01-01 15:14:06 +01:00
|
|
|
@failed="";\
|
2006-04-24 17:09:32 +02:00
|
|
|
noapiv="";\
|
2006-01-01 15:14:06 +01:00
|
|
|
for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do\
|
2012-12-21 10:14:32 +01:00
|
|
|
echo "*** Plugin $$i:";\
|
2006-04-23 09:04:32 +02:00
|
|
|
if ! grep -q "\$$(LIBDIR)/.*\$$(APIVERSION)" "$(PLUGINDIR)/src/$$i/Makefile" ; then\
|
|
|
|
echo "ERROR: plugin $$i doesn't honor APIVERSION - not compiled!";\
|
|
|
|
noapiv="$$noapiv $$i";\
|
|
|
|
continue;\
|
|
|
|
fi;\
|
2012-12-21 10:14:32 +01:00
|
|
|
target=all;\
|
|
|
|
if [ "$(LIBDIR)" == "$(CWD)/PLUGINS/lib" ] && [ "$(LOCDIR)" == "$(CWD)/locale" ]; then\
|
|
|
|
target=install;\
|
|
|
|
fi;\
|
|
|
|
$(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR=$(CWD) $$target || failed="$$failed $$i";\
|
2006-01-01 15:14:06 +01:00
|
|
|
done;\
|
2006-04-23 09:04:32 +02:00
|
|
|
if [ -n "$$noapiv" ] ; then echo; echo "*** plugins without APIVERSION:$$noapiv"; echo; fi;\
|
2008-03-01 09:42:36 +01:00
|
|
|
if [ -n "$$failed" ] ; then echo; echo "*** failed plugins:$$failed"; echo; exit 1; fi
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2006-02-05 13:39:12 +01:00
|
|
|
clean-plugins:
|
2012-12-21 10:14:32 +01:00
|
|
|
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" clean; done
|
2006-06-02 14:48:21 +02:00
|
|
|
@-rm -f $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION)
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2002-03-29 14:24:47 +01:00
|
|
|
# Install the files:
|
|
|
|
|
2012-09-01 14:03:45 +02:00
|
|
|
install: install-bin install-dirs install-conf install-doc install-plugins install-i18n install-includes install-pc
|
2006-01-29 14:57:13 +01:00
|
|
|
|
|
|
|
# VDR binary:
|
|
|
|
|
|
|
|
install-bin: vdr
|
2007-08-15 13:49:27 +02:00
|
|
|
@mkdir -p $(DESTDIR)$(BINDIR)
|
2011-12-04 14:36:37 +01:00
|
|
|
@cp --remove-destination vdr svdrpsend $(DESTDIR)$(BINDIR)
|
2006-01-29 14:57:13 +01:00
|
|
|
|
|
|
|
# Configuration files:
|
|
|
|
|
2012-09-01 14:03:45 +02:00
|
|
|
install-dirs:
|
2007-08-15 13:49:27 +02:00
|
|
|
@mkdir -p $(DESTDIR)$(VIDEODIR)
|
2012-09-09 09:29:15 +02:00
|
|
|
@mkdir -p $(DESTDIR)$(CONFDIRDEF)
|
|
|
|
@mkdir -p $(DESTDIR)$(CACHEDIRDEF)
|
|
|
|
@mkdir -p $(DESTDIR)$(RESDIRDEF)
|
2012-09-01 14:03:45 +02:00
|
|
|
|
|
|
|
install-conf:
|
2012-10-09 08:34:57 +02:00
|
|
|
@cp -n *.conf $(DESTDIR)$(CONFDIRDEF)
|
2012-09-01 14:03:45 +02:00
|
|
|
|
2006-01-29 14:57:13 +01:00
|
|
|
|
|
|
|
# Documentation:
|
|
|
|
|
|
|
|
install-doc:
|
2007-08-15 13:49:27 +02:00
|
|
|
@mkdir -p $(DESTDIR)$(MANDIR)/man1
|
|
|
|
@mkdir -p $(DESTDIR)$(MANDIR)/man5
|
|
|
|
@gzip -c vdr.1 > $(DESTDIR)$(MANDIR)/man1/vdr.1.gz
|
|
|
|
@gzip -c vdr.5 > $(DESTDIR)$(MANDIR)/man5/vdr.5.gz
|
2002-03-29 14:24:47 +01:00
|
|
|
|
2006-01-29 14:57:13 +01:00
|
|
|
# Plugins:
|
|
|
|
|
|
|
|
install-plugins: plugins
|
2012-12-21 10:14:32 +01:00
|
|
|
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do\
|
|
|
|
$(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR=$(CWD) install;\
|
|
|
|
done
|
2005-09-02 13:39:53 +02:00
|
|
|
|
2011-04-17 13:37:50 +02:00
|
|
|
# Includes:
|
|
|
|
|
|
|
|
install-includes: include-dir
|
|
|
|
@mkdir -p $(DESTDIR)$(INCDIR)
|
|
|
|
@cp -pLR include/vdr include/libsi $(DESTDIR)$(INCDIR)
|
|
|
|
|
2011-12-04 14:11:20 +01:00
|
|
|
# pkg-config file:
|
|
|
|
|
|
|
|
install-pc: vdr.pc
|
|
|
|
if [ -n "$(PCDIR)" ] ; then \
|
|
|
|
mkdir -p $(DESTDIR)$(PCDIR) ; \
|
|
|
|
cp vdr.pc $(DESTDIR)$(PCDIR) ; \
|
|
|
|
fi
|
|
|
|
|
2002-12-15 15:36:02 +01:00
|
|
|
# Source documentation:
|
|
|
|
|
|
|
|
srcdoc:
|
|
|
|
@cp $(DOXYFILE) $(DOXYFILE).tmp
|
2005-02-13 10:18:07 +01:00
|
|
|
@echo PROJECT_NUMBER = $(VDRVERSION) >> $(DOXYFILE).tmp
|
2002-12-15 15:36:02 +01:00
|
|
|
$(DOXYGEN) $(DOXYFILE).tmp
|
|
|
|
@rm $(DOXYFILE).tmp
|
|
|
|
|
2000-10-03 10:34:48 +02:00
|
|
|
# Housekeeping:
|
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
clean:
|
2012-12-21 10:14:32 +01:00
|
|
|
@$(MAKE) --no-print-directory -C $(LSIDIR) clean
|
2012-12-19 12:10:28 +01:00
|
|
|
@-rm -f $(OBJS) $(DEPFILE) vdr vdr.pc core* *~
|
|
|
|
@-rm -rf $(LOCALEDIR) $(PODIR)/*.mo $(PODIR)/*.pot
|
|
|
|
@-rm -rf include
|
|
|
|
@-rm -rf srcdoc
|
2007-06-10 13:02:43 +02:00
|
|
|
CLEAN: clean
|
2012-12-21 10:14:32 +01:00
|
|
|
distclean: clean-plugins clean
|