vdr/Makefile

247 lines
7.4 KiB
Makefile
Raw Normal View History

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.
#
# $Id: Makefile 1.96 2007/01/07 14:38:00 kls Exp $
.DELETE_ON_ERROR:
2000-02-19 13:36:48 +01:00
CC ?= gcc
CFLAGS ?= -g -O2 -Wall
2002-07-28 13:25:30 +02:00
CXX ?= g++
CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual
2002-07-28 13:25:30 +02:00
LSIDIR = ./libsi
2002-03-29 14:24:47 +01:00
MANDIR = /usr/local/man
BINDIR = /usr/local/bin
LIBS = -ljpeg -lpthread -ldl -lcap
2005-05-14 10:33:37 +02:00
INCLUDES =
2002-05-09 16:26:56 +02:00
PLUGINDIR= ./PLUGINS
PLUGINLIBDIR= $(PLUGINDIR)/lib
2002-05-09 16:26:56 +02:00
VIDEODIR = /video
DOXYGEN = /usr/bin/doxygen
DOXYFILE = Doxyfile
-include Make.config
SILIB = $(LSIDIR)/libsi.a
OBJS = audio.o channels.o ci.o config.o cutter.o device.o diseqc.o dvbdevice.o dvbci.o dvbosd.o\
dvbplayer.o dvbspu.o eit.o eitscan.o epg.o filter.o font.o i18n.o interface.o keys.o\
lirc.o menu.o menuitems.o nit.o osdbase.o osd.o pat.o player.o plugin.o rcu.o\
2004-05-16 10:35:36 +02:00
receiver.o recorder.o recording.o remote.o remux.o ringbuffer.o sdt.o sections.o\
skinclassic.o skins.o skinsttng.o sources.o spu.o status.o svdrp.o themes.o thread.o\
timers.o tools.o transfer.o vdr.o videodir.o
2000-10-03 10:34:48 +02:00
FIXFONT_ISO8859_1 = -adobe-courier-bold-r-normal--25-*-100-100-m-*-iso8859-1
OSDFONT_ISO8859_1 = -adobe-helvetica-medium-r-normal--23-*-100-100-p-*-iso8859-1
SMLFONT_ISO8859_1 = -adobe-helvetica-medium-r-normal--18-*-100-100-p-*-iso8859-1
2004-05-16 12:05:40 +02:00
FIXFONT_ISO8859_2 = -adobe-courier-bold-r-normal--25-*-100-100-m-*-iso8859-2
OSDFONT_ISO8859_2 = -adobe-helvetica-medium-r-normal--24-*-75-75-p-*-iso8859-2
SMLFONT_ISO8859_2 = -adobe-helvetica-medium-r-normal--18-*-75-75-p-*-iso8859-2
2004-01-16 13:34:43 +01:00
FIXFONT_ISO8859_5 = -rfx-courier-bold-r-normal--24-*-75-75-m-*-iso8859-5
OSDFONT_ISO8859_5 = -rfx-helvetica-medium-r-normal--24-*-75-75-p-*-iso8859-5
SMLFONT_ISO8859_5 = -rfx-helvetica-medium-r-normal--18-*-75-75-p-*-iso8859-5
2004-05-16 12:05:40 +02:00
FIXFONT_ISO8859_7 = --user-medium-r-normal--26-171-110-110-m-140-iso8859-7
OSDFONT_ISO8859_7 = --user-medium-r-normal--23-179-85-85-m-120-iso8859-7
SMLFONT_ISO8859_7 = --user-medium-r-normal--19-160-72-72-m-110-iso8859-7
2000-02-19 13:36:48 +01:00
2004-10-16 12:00:44 +02:00
FIXFONT_ISO8859_15 = -adobe-courier-bold-r-normal--25-*-100-100-m-*-iso8859-15
OSDFONT_ISO8859_15 = -adobe-helvetica-medium-r-normal--23-*-100-100-p-*-iso8859-15
SMLFONT_ISO8859_15 = -adobe-helvetica-medium-r-normal--18-*-100-100-p-*-iso8859-15
ifndef NO_KBD
DEFINES += -DREMOTE_KBD
endif
ifdef REMOTE
2000-07-15 12:39:20 +02:00
DEFINES += -DREMOTE_$(REMOTE)
endif
2006-01-13 16:16:32 +01:00
ifdef VDR_USER
DEFINES += -DVDR_USER=\"$(VDR_USER)\"
endif
LIRC_DEVICE ?= /dev/lircd
RCU_DEVICE ?= /dev/ttyS1
DEFINES += -DLIRC_DEVICE=\"$(LIRC_DEVICE)\" -DRCU_DEVICE=\"$(RCU_DEVICE)\"
2000-07-15 12:39:20 +02:00
DEFINES += -D_GNU_SOURCE
DEFINES += -DVIDEODIR=\"$(VIDEODIR)\"
DEFINES += -DPLUGINDIR=\"$(PLUGINLIBDIR)\"
# The version numbers of VDR and the plugin API (taken from VDR's "config.h"):
VDRVERSION = $(shell sed -ne '/define VDRVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
ifdef VFAT
# for people who want their video directory on a VFAT partition
DEFINES += -DVFAT
endif
2000-10-03 10:34:48 +02:00
all: vdr
font: genfontfile\
fontfix-iso8859-1.c fontosd-iso8859-1.c fontsml-iso8859-1.c\
2004-05-16 12:05:40 +02:00
fontfix-iso8859-2.c fontosd-iso8859-2.c fontsml-iso8859-2.c\
fontfix-iso8859-5.c fontosd-iso8859-5.c fontsml-iso8859-5.c\
fontfix-iso8859-7.c fontosd-iso8859-7.c fontsml-iso8859-7.c\
fontfix-iso8859-15.c fontosd-iso8859-15.c fontsml-iso8859-15.c
2000-11-18 15:46:00 +01:00
@echo "font files created."
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:
vdr: $(OBJS) $(SILIB)
2005-05-14 10:33:37 +02:00
$(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(NCURSESLIB) $(LIBS) $(LIBDIRS) $(SILIB) -o vdr
2000-02-19 13:36:48 +01:00
2000-11-18 15:46:00 +01:00
# The font files:
2000-10-03 10:34:48 +02:00
fontfix-iso8859-1.c:
./genfontfile "cFont::tPixelData FontFix_iso8859_1" "$(FIXFONT_ISO8859_1)" > $@
fontosd-iso8859-1.c:
./genfontfile "cFont::tPixelData FontOsd_iso8859_1" "$(OSDFONT_ISO8859_1)" > $@
fontsml-iso8859-1.c:
./genfontfile "cFont::tPixelData FontSml_iso8859_1" "$(SMLFONT_ISO8859_1)" > $@
2004-05-16 12:05:40 +02:00
fontfix-iso8859-2.c:
./genfontfile "cFont::tPixelData FontFix_iso8859_2" "$(FIXFONT_ISO8859_2)" > $@
fontosd-iso8859-2.c:
./genfontfile "cFont::tPixelData FontOsd_iso8859_2" "$(OSDFONT_ISO8859_2)" > $@
fontsml-iso8859-2.c:
./genfontfile "cFont::tPixelData FontSml_iso8859_2" "$(SMLFONT_ISO8859_2)" > $@
fontfix-iso8859-5.c:
2004-01-16 13:34:43 +01:00
./genfontfile "cFont::tPixelData FontFix_iso8859_5" "$(FIXFONT_ISO8859_5)" > $@
2004-05-16 12:05:40 +02:00
fontosd-iso8859-5.c:
2004-01-16 13:34:43 +01:00
./genfontfile "cFont::tPixelData FontOsd_iso8859_5" "$(OSDFONT_ISO8859_5)" > $@
2004-05-16 12:05:40 +02:00
fontsml-iso8859-5.c:
2004-01-16 13:34:43 +01:00
./genfontfile "cFont::tPixelData FontSml_iso8859_5" "$(SMLFONT_ISO8859_5)" > $@
2004-05-16 12:05:40 +02:00
fontfix-iso8859-7.c:
./genfontfile "cFont::tPixelData FontFix_iso8859_7" "$(FIXFONT_ISO8859_7)" > $@
2004-05-16 12:05:40 +02:00
fontosd-iso8859-7.c:
./genfontfile "cFont::tPixelData FontOsd_iso8859_7" "$(OSDFONT_ISO8859_7)" > $@
2004-05-16 12:05:40 +02:00
fontsml-iso8859-7.c:
./genfontfile "cFont::tPixelData FontSml_iso8859_7" "$(SMLFONT_ISO8859_7)" > $@
2000-10-03 10:34:48 +02:00
2004-10-16 12:00:44 +02:00
fontfix-iso8859-15.c:
./genfontfile "cFont::tPixelData FontFix_iso8859_15" "$(FIXFONT_ISO8859_15)" > $@
fontosd-iso8859-15.c:
./genfontfile "cFont::tPixelData FontOsd_iso8859_15" "$(OSDFONT_ISO8859_15)" > $@
fontsml-iso8859-15.c:
./genfontfile "cFont::tPixelData FontSml_iso8859_15" "$(SMLFONT_ISO8859_15)" > $@
2000-10-03 10:34:48 +02:00
# The font file generator:
genfontfile: genfontfile.c
2002-07-28 13:25:30 +02:00
$(CC) $(CFLAGS) -o $@ -L/usr/X11R6/lib $< -lX11
2000-10-03 10:34:48 +02:00
# The libsi library:
$(SILIB):
$(MAKE) -C $(LSIDIR) all
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)
@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:
plugins: include-dir
@failed="";\
noapiv="";\
for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do\
echo "Plugin $$i:";\
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;\
$(MAKE) -C "$(PLUGINDIR)/src/$$i" all || failed="$$failed $$i";\
done;\
if [ -n "$$noapiv" ] ; then echo; echo "*** plugins without APIVERSION:$$noapiv"; echo; fi;\
if [ -n "$$failed" ] ; then echo; echo "*** failed plugins:$$failed"; echo; fi
2002-05-09 16:26:56 +02:00
clean-plugins:
2002-05-17 16:29:02 +02:00
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" clean; done
@-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:
install: install-bin install-conf install-doc install-plugins
# VDR binary:
install-bin: vdr
@mkdir -p $(BINDIR)
@cp --remove-destination vdr runvdr $(BINDIR)
# Configuration files:
install-conf:
@if [ ! -d $(VIDEODIR) ]; then\
mkdir -p $(VIDEODIR);\
cp *.conf $(VIDEODIR);\
fi
# Documentation:
install-doc:
@mkdir -p $(MANDIR)/man1
@mkdir -p $(MANDIR)/man5
@gzip -c vdr.1 > $(MANDIR)/man1/vdr.1.gz
@gzip -c vdr.5 > $(MANDIR)/man5/vdr.5.gz
2002-03-29 14:24:47 +01:00
# Plugins:
install-plugins: plugins
@mkdir -p $(PLUGINLIBDIR)
@cp --remove-destination $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(PLUGINLIBDIR)
# Source documentation:
srcdoc:
@cp $(DOXYFILE) $(DOXYFILE).tmp
@echo PROJECT_NUMBER = $(VDRVERSION) >> $(DOXYFILE).tmp
$(DOXYGEN) $(DOXYFILE).tmp
@rm $(DOXYFILE).tmp
2000-10-03 10:34:48 +02:00
# Housekeeping:
2000-02-19 13:36:48 +01:00
clean:
$(MAKE) -C $(LSIDIR) clean
2002-02-01 14:40:09 +01:00
-rm -f $(OBJS) $(DEPFILE) vdr genfontfile genfontfile.o core* *~
2002-05-09 16:26:56 +02:00
-rm -rf include
-rm -rf srcdoc
fontclean:
-rm -f fontfix*.c fontosd*.c fontsml*.c
CLEAN: clean fontclean