diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 1.18 2001/01/13 12:26:43 kls Exp $ +# $Id: Makefile 1.20 2001/02/24 15:52:58 kls Exp $ DVBDIR = ../DVB @@ -25,6 +25,11 @@ ifdef DEBUG_OSD DEFINES += -DDEBUG_OSD endif +ifdef VFAT +# for people who want their video directory on a VFAT partition +DEFINES += -DVFAT +endif + all: vdr font: genfontfile fontfix.c fontosd.c @echo "font files created." @@ -75,6 +80,6 @@ genfontfile: genfontfile.o # Housekeeping: clean: - -rm -f $(OBJS) vdr genfontfile genfontfile.o + -rm -f $(OBJS) vdr genfontfile genfontfile.o core CLEAN: clean -rm -f fontfix.c fontosd.c |