vdr/Makefile

135 lines
3.0 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.53 2002/12/08 12:20:37 kls Exp $
.DELETE_ON_ERROR:
2000-02-19 13:36:48 +01:00
2002-07-28 13:25:30 +02:00
CC = gcc
CFLAGS = -O2
CXX = g++
CXXFLAGS = -g -O2 -Wall -Woverloaded-virtual
DVBDIR = ../DVB
DTVDIR = ./libdtv
2002-03-29 14:24:47 +01:00
MANDIR = /usr/local/man
BINDIR = /usr/local/bin
2002-05-09 16:26:56 +02:00
PLUGINDIR= ./PLUGINS
VIDEODIR = /video
-include Make.config
2002-08-10 14:58:25 +02:00
INCLUDES = -I$(DVBDIR)/include
2001-08-06 16:19:20 +02:00
DTVLIB = $(DTVDIR)/libdtv.a
OBJS = audio.o channels.o config.o cutter.o device.o diseqc.o dvbdevice.o dvbosd.o\
dvbplayer.o dvbspu.o eit.o eitscan.o font.o i18n.o interface.o keys.o\
lirc.o menu.o menuitems.o osdbase.o osd.o player.o plugin.o rcu.o\
receiver.o recorder.o recording.o remote.o remux.o ringbuffer.o sources.o\
spu.o status.o svdrp.o thread.o timers.o tools.o transfer.o vdr.o videodir.o
2000-10-03 10:34:48 +02:00
OSDFONT = -adobe-helvetica-medium-r-normal--23-*-100-100-p-*-iso8859-1
2000-11-18 15:46:00 +01:00
FIXFONT = -adobe-courier-bold-r-normal--25-*-100-100-m-*-iso8859-1
2000-02-19 13:36:48 +01:00
ifndef NO_KBD
DEFINES += -DREMOTE_KBD
endif
2000-07-15 12:39:20 +02:00
DEFINES += -DREMOTE_$(REMOTE)
DEFINES += -D_GNU_SOURCE
2000-02-19 13:36:48 +01:00
ifdef DEBUG_OSD
DEFINES += -DDEBUG_OSD
NCURSESLIB = -lncurses
2000-02-19 13:36:48 +01:00
endif
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
2000-11-18 15:46:00 +01:00
font: genfontfile fontfix.c fontosd.c
@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) $(DTVLIB)
2002-07-28 13:25:30 +02:00
$(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(NCURSESLIB) -ljpeg -lpthread -ldl $(LIBDIRS) $(DTVLIB) -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
2000-11-18 15:46:00 +01:00
fontfix.c:
./genfontfile "cFont::tPixelData FontFix" "$(FIXFONT)" > $@
2000-10-03 10:34:48 +02:00
fontosd.c:
./genfontfile "cFont::tPixelData FontOsd" "$(OSDFONT)" > $@
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 libdtv library:
$(DTVLIB) $(DTVDIR)/libdtv.h:
2002-05-17 16:29:02 +02:00
$(MAKE) -C $(DTVDIR) 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)
# Plugins:
plugins: include-dir
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" all; done
2002-05-09 16:26:56 +02:00
plugins-clean:
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
2002-05-09 16:26:56 +02:00
@-rm -f $(PLUGINDIR)/lib/*
2002-03-29 14:24:47 +01:00
# Install the files:
install:
@cp vdr runvdr $(BINDIR)
@gzip -c vdr.1 > $(MANDIR)/man1/vdr.1.gz
@gzip -c vdr.5 > $(MANDIR)/man5/vdr.5.gz
@if [ ! -d $(VIDEODIR) ]; then\
mkdir $(VIDEODIR);\
cp *.conf $(VIDEODIR);\
fi
2002-03-29 14:24:47 +01:00
2000-10-03 10:34:48 +02:00
# Housekeeping:
2000-02-19 13:36:48 +01:00
clean:
2002-05-17 16:29:02 +02:00
$(MAKE) -C $(DTVDIR) 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
fontclean:
2000-11-18 15:46:00 +01:00
-rm -f fontfix.c fontosd.c
CLEAN: clean fontclean