libdrawtext
diff examples/Makefile @ 1:daa47eeca303
added simple example
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Thu, 15 Sep 2011 13:21:35 +0300 |
parents | |
children | fe0c54e574ae |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/examples/Makefile Thu Sep 15 13:21:35 2011 +0300 1.3 @@ -0,0 +1,10 @@ 1.4 +fonts = fonts/FreeSerif.ttf 1.5 + 1.6 +.PHONY: all 1.7 +all: $(fonts) 1.8 + cd simple; $(MAKE) 1.9 + 1.10 +fonts/FreeSerif.ttf: 1.11 + wget http://ftp.gnu.org/gnu/freefont/freefont-ttf-20100919.tar.gz 1.12 + tar xzvf freefont-ttf-20100919.tar.gz 1.13 + mv freefont-20100919 fonts