diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-03 11:40:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-03 11:40:00 +0200 |
commit | d4eb96f725bed149762665ddee275301c9f069a6 (patch) | |
tree | 86490012d641fb095f933a0d3c4f350142f833b6 /Makefile | |
parent | 97ada9e02531e7db04e635aec262b056904fce8a (diff) | |
download | vdr-d4eb96f725bed149762665ddee275301c9f069a6.tar.gz vdr-d4eb96f725bed149762665ddee275301c9f069a6.tar.bz2 |
Added EIT support for current/next display0.6.2
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -4,9 +4,12 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 1.6 2000/07/28 14:37:44 kls Exp $ +# $Id: Makefile 1.7 2000/09/03 09:26:24 kls Exp $ -OBJS = config.o dvbapi.o interface.o menu.o osd.o recording.o remote.o svdrp.o tools.o vdr.o videodir.o +DVBDIR = ../DVB + +INCLUDES = -I$(DVBDIR)/driver +OBJS = config.o dvbapi.o eit.o interface.o menu.o osd.o recording.o remote.o svdrp.o tools.o vdr.o videodir.o ifndef REMOTE REMOTE = KBD @@ -19,13 +22,14 @@ DEFINES += -DDEBUG_OSD endif %.o: %.c - g++ -g -O2 -Wall -c $(DEFINES) $< + g++ -g -O2 -Wall -c $(DEFINES) $(INCLUDES) $< all: vdr -config.o : config.c config.h dvbapi.h interface.h tools.h +config.o : config.c config.h dvbapi.h eit.h interface.h tools.h dvbapi.o : dvbapi.c config.h dvbapi.h interface.h tools.h videodir.h -interface.o: interface.c config.h dvbapi.h interface.h remote.h tools.h +eit.o : eit.c eit.h +interface.o: interface.c config.h dvbapi.h eit.h interface.h remote.h tools.h menu.o : menu.c config.h dvbapi.h interface.h menu.h osd.h recording.h tools.h osd.o : osd.c config.h dvbapi.h interface.h osd.h tools.h vdr.o : vdr.c config.h dvbapi.h interface.h menu.h osd.h recording.h svdrp.h tools.h videodir.h |