diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-10 16:56:49 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-10 16:56:49 +0200 |
commit | 0387ee9ad9a557ed3bc81ec07bbb090fc1d48be3 (patch) | |
tree | ad19cd93653e946d066d7ab283bad87e6b03040f | |
parent | 1c12948b7ee7df2ff431c17df744fb671ee99a1f (diff) | |
download | vdr-0387ee9ad9a557ed3bc81ec07bbb090fc1d48be3.tar.gz vdr-0387ee9ad9a557ed3bc81ec07bbb090fc1d48be3.tar.bz2 |
Made the font file generation more stable
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | Makefile | 18 |
3 files changed, 14 insertions, 8 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 6f76971b..9b542530 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -122,3 +122,6 @@ Uwe Scheffler <UweScheffler@t-online.de> Matjaz Thaler <matjaz.thaler@guest.arnes.si> for improving AC3 decoding when replaying DVDs + +Artur Skawina <skawina@geocities.com> + for improving the font file generation in the Makefile @@ -633,3 +633,4 @@ Video Disk Recorder Revision History system. - Changed the 'Eject DVD' button text to a simple 'Eject' (the German text was too long...). +- Made the font file generation more stable (thanks to Artur Skawina). @@ -4,7 +4,9 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 1.24 2001/08/06 16:13:42 kls Exp $ +# $Id: Makefile 1.25 2001/08/10 16:46:45 kls Exp $ + +.DELETE_ON_ERROR: DVBDIR = ../DVB DVDDIR = ../DVD @@ -82,16 +84,14 @@ vdr: $(OBJS) $(AC3LIB) # The font files: fontfix.c: - genfontfile "cFont::tPixelData FontFix" $(FIXFONT) > $@ + ./genfontfile "cFont::tPixelData FontFix" "$(FIXFONT)" > $@ fontosd.c: - genfontfile "cFont::tPixelData FontOsd" $(OSDFONT) > $@ + ./genfontfile "cFont::tPixelData FontOsd" "$(OSDFONT)" > $@ # The font file generator: -genfontfile.o: genfontfile.c - gcc -O2 -c $< -genfontfile: genfontfile.o - gcc -o $@ -L/usr/X11R6/lib $< -lX11 +genfontfile: genfontfile.c + gcc -o $@ -O2 -L/usr/X11R6/lib $< -lX11 # The ac3dec library: @@ -103,5 +103,7 @@ $(AC3LIB): clean: make -C $(AC3DIR) clean -rm -f $(OBJS) vdr genfontfile genfontfile.o core *~ -CLEAN: clean +fontclean: -rm -f fontfix.c fontosd.c +CLEAN: clean fontclean + |