summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2000-03-11 18:00:00 +0100
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2000-03-11 18:00:00 +0100
commit6feebe674c09b65e43012bf439c201cfb65aa82c (patch)
tree85cf564cd0f48e44431a93ea2f22bba7fc924e98 /Makefile
parentc475c637aba78366763cb122673ff836dd9e7e85 (diff)
downloadvdr-patch-lnbsharing-6feebe674c09b65e43012bf439c201cfb65aa82c.tar.gz
vdr-patch-lnbsharing-6feebe674c09b65e43012bf439c201cfb65aa82c.tar.bz2
Version 0.02vdr_osm-0.02
- Fixed compilation with only DEBUG_REMOTE=1. - Menus now use colors. - Support for "Red", "Green", "Yellow", "Blue" buttons. - Channels and Timers can now be added, deleted and moved. - Basic record/play file handling support (no actual record/playback yet).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6696dff..b5153cf 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,9 @@
# See the main source file 'osm.c' for copyright information and
# how to reach the author.
#
-# $Id: Makefile 1.1 2000/02/19 13:36:48 kls Exp $
+# $Id: Makefile 1.2 2000/03/05 13:51:57 kls Exp $
-OBJS = config.o dvbapi.o interface.o menu.o osd.o remote.o tools.o osm.o
+OBJS = config.o dvbapi.o interface.o menu.o osd.o recording.o remote.o tools.o osm.o
ifdef DEBUG_REMOTE
DEFINES += -DDEBUG_REMOTE
@@ -24,9 +24,10 @@ all: osm
config.o : config.c config.h dvbapi.h interface.h tools.h
dvbapi.o : dvbapi.c config.h dvbapi.h interface.h tools.h
interface.o: interface.c config.h dvbapi.h interface.h remote.h tools.h
-menu.o : menu.c config.h dvbapi.h interface.h menu.h osd.h tools.h
-osd.o : osd.c config.h interface.h osd.h tools.h
-osm.o : osm.c config.h dvbapi.h interface.h menu.h osd.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
+osm.o : osm.c config.h dvbapi.h interface.h menu.h osd.h recording.h tools.h
+recording.o: recording.c config.h dvbapi.h interface.h recording.h tools.h
remote.o : remote.c remote.h tools.h
tools.o : tools.c tools.h