Mercurial > mplayer.hg
comparison TOOLS/subfont-c/Makefile @ 1470:2c7b0478db0c
mplayer font-generator using FreeType 2.x by Artur Zaprzala <zybi@fanthom.irc.pl>
author | arpi |
---|---|
date | Thu, 09 Aug 2001 17:28:06 +0000 |
parents | |
children | e5e6c26c1aa1 |
comparison
equal
deleted
inserted
replaced
1469:22996ab2d78f | 1470:2c7b0478db0c |
---|---|
1 #font="/mnt/win/windows/fonts/arial.ttf" | |
2 #font="/mnt/win/windows/fonts/comic.ttf" | |
3 #font="/mnt/win/windows/fonts/verdanai.ttf" | |
4 font="/mnt/win/windows/fonts/verdana.ttf" | |
5 | |
6 #encoding=windows-1250 | |
7 encoding=iso-8859-2 | |
8 | |
9 fontsize=20 | |
10 | |
11 | |
12 LDLIBS=-lm $(shell freetype-config --libs) | |
13 CFLAGS=-O3 $(shell freetype-config --cflags) | |
14 | |
15 | |
16 subfont: subfont.o | |
17 | |
18 run: subfont | |
19 ./subfont $(encoding) $(fontsize) $(font) | |
20 cat font.desc.tail >> font.desc | |
21 cp font.desc *.raw ~/.mplayer/font/ | |
22 | |
23 clean: | |
24 rm -f subfont subfont.o |