mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Made the font file generation more stable
This commit is contained in:
parent
1c12948b7e
commit
0387ee9ad9
@ -122,3 +122,6 @@ Uwe Scheffler <UweScheffler@t-online.de>
|
|||||||
|
|
||||||
Matjaz Thaler <matjaz.thaler@guest.arnes.si>
|
Matjaz Thaler <matjaz.thaler@guest.arnes.si>
|
||||||
for improving AC3 decoding when replaying DVDs
|
for improving AC3 decoding when replaying DVDs
|
||||||
|
|
||||||
|
Artur Skawina <skawina@geocities.com>
|
||||||
|
for improving the font file generation in the Makefile
|
||||||
|
1
HISTORY
1
HISTORY
@ -633,3 +633,4 @@ Video Disk Recorder Revision History
|
|||||||
system.
|
system.
|
||||||
- Changed the 'Eject DVD' button text to a simple 'Eject' (the German text
|
- Changed the 'Eject DVD' button text to a simple 'Eject' (the German text
|
||||||
was too long...).
|
was too long...).
|
||||||
|
- Made the font file generation more stable (thanks to Artur Skawina).
|
||||||
|
18
Makefile
18
Makefile
@ -4,7 +4,9 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# 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
|
DVBDIR = ../DVB
|
||||||
DVDDIR = ../DVD
|
DVDDIR = ../DVD
|
||||||
@ -82,16 +84,14 @@ vdr: $(OBJS) $(AC3LIB)
|
|||||||
# The font files:
|
# The font files:
|
||||||
|
|
||||||
fontfix.c:
|
fontfix.c:
|
||||||
genfontfile "cFont::tPixelData FontFix" $(FIXFONT) > $@
|
./genfontfile "cFont::tPixelData FontFix" "$(FIXFONT)" > $@
|
||||||
fontosd.c:
|
fontosd.c:
|
||||||
genfontfile "cFont::tPixelData FontOsd" $(OSDFONT) > $@
|
./genfontfile "cFont::tPixelData FontOsd" "$(OSDFONT)" > $@
|
||||||
|
|
||||||
# The font file generator:
|
# The font file generator:
|
||||||
|
|
||||||
genfontfile.o: genfontfile.c
|
genfontfile: genfontfile.c
|
||||||
gcc -O2 -c $<
|
gcc -o $@ -O2 -L/usr/X11R6/lib $< -lX11
|
||||||
genfontfile: genfontfile.o
|
|
||||||
gcc -o $@ -L/usr/X11R6/lib $< -lX11
|
|
||||||
|
|
||||||
# The ac3dec library:
|
# The ac3dec library:
|
||||||
|
|
||||||
@ -103,5 +103,7 @@ $(AC3LIB):
|
|||||||
clean:
|
clean:
|
||||||
make -C $(AC3DIR) clean
|
make -C $(AC3DIR) clean
|
||||||
-rm -f $(OBJS) vdr genfontfile genfontfile.o core *~
|
-rm -f $(OBJS) vdr genfontfile genfontfile.o core *~
|
||||||
CLEAN: clean
|
fontclean:
|
||||||
-rm -f fontfix.c fontosd.c
|
-rm -f fontfix.c fontosd.c
|
||||||
|
CLEAN: clean fontclean
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user