vdr/Makefile

105 lines
2.1 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.
#
2002-03-29 14:24:47 +01:00
# $Id: Makefile 1.32 2002/03/29 14:20:27 kls Exp $
.DELETE_ON_ERROR:
2000-02-19 13:36:48 +01:00
DVBDIR = ../DVB
DTVDIR = ./libdtv
2002-03-29 14:24:47 +01:00
MANDIR = /usr/local/man
BINDIR = /usr/local/bin
2001-08-06 16:19:20 +02:00
INCLUDES = -I$(DVBDIR)/ost/include
DTVLIB = $(DTVDIR)/libdtv.a
OBJS = config.o dvbapi.o dvbosd.o eit.o font.o i18n.o interface.o menu.o osd.o\
recording.o remote.o remux.o ringbuffer.o svdrp.o thread.o tools.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
2000-07-15 12:39:20 +02:00
ifndef REMOTE
REMOTE = KBD
2000-02-19 13:36:48 +01:00
endif
ifeq ($(REMOTE), KBD)
NCURSESLIB = -lncurses
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
g++ -g -O2 -Wall -Woverloaded-virtual -m486 -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
2001-08-31 13:13:30 +02:00
MAKEDEP = g++ -MM -MG
DEPFILE = .dependencies
$(DEPFILE): Makefile
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
include $(DEPFILE)
2000-02-19 13:36:48 +01:00
2000-10-03 10:34:48 +02:00
# The main program:
vdr: $(OBJS) $(DTVLIB)
g++ -g -O2 $(OBJS) $(NCURSESLIB) -ljpeg -lpthread $(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
gcc -o $@ -O2 -L/usr/X11R6/lib $< -lX11
2000-10-03 10:34:48 +02:00
# The libdtv library:
$(DTVLIB) $(DTVDIR)/libdtv.h:
make -C $(DTVDIR) all
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
2000-10-03 10:34:48 +02:00
# Housekeeping:
2000-02-19 13:36:48 +01:00
clean:
make -C $(DTVDIR) clean
2002-02-01 14:40:09 +01:00
-rm -f $(OBJS) $(DEPFILE) vdr genfontfile genfontfile.o core* *~
fontclean:
2000-11-18 15:46:00 +01:00
-rm -f fontfix.c fontosd.c
CLEAN: clean fontclean