libdrawtext
changeset 81:59e4bbbabddd
fixed the example makefiles
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 15 Apr 2014 05:49:05 +0300 |
parents | 265d44de4d26 |
children | 21c96f4c2801 |
files | examples/nofreetype/Makefile examples/simple/Makefile examples/unicode/Makefile tools/font2glyphmap/Makefile |
diffstat | 4 files changed, 4 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/examples/nofreetype/Makefile Tue Apr 15 05:47:46 2014 +0300 1.2 +++ b/examples/nofreetype/Makefile Tue Apr 15 05:49:05 2014 +0300 1.3 @@ -12,7 +12,7 @@ 1.4 lib_so = libdrawtext-noft.dylib 1.5 else 1.6 libgl = -lGL -lGLU -lglut 1.7 - lib_so = libdrawtext-noft.so.0.0 1.8 + lib_so = libdrawtext-noft.so.0.2 1.9 lib_soname = libdrawtext-noft.so.0 1.10 endif 1.11
2.1 --- a/examples/simple/Makefile Tue Apr 15 05:47:46 2014 +0300 2.2 +++ b/examples/simple/Makefile Tue Apr 15 05:49:05 2014 +0300 2.3 @@ -12,7 +12,7 @@ 2.4 lib_so = libdrawtext.dylib 2.5 else 2.6 libgl = -lGL -lGLU -lglut 2.7 - lib_so = libdrawtext.so.0.0 2.8 + lib_so = libdrawtext.so.0.2 2.9 endif 2.10 2.11 $(bin): $(obj) $(lib_so) $(font)
3.1 --- a/examples/unicode/Makefile Tue Apr 15 05:47:46 2014 +0300 3.2 +++ b/examples/unicode/Makefile Tue Apr 15 05:49:05 2014 +0300 3.3 @@ -12,7 +12,7 @@ 3.4 lib_so = libdrawtext.dylib 3.5 else 3.6 libgl = -lGL -lGLU -lglut 3.7 - lib_so = libdrawtext.so.0.0 3.8 + lib_so = libdrawtext.so.0.2 3.9 endif 3.10 3.11 $(bin): $(obj) $(lib_so) $(fonts)
4.1 --- a/tools/font2glyphmap/Makefile Tue Apr 15 05:47:46 2014 +0300 4.2 +++ b/tools/font2glyphmap/Makefile Tue Apr 15 05:49:05 2014 +0300 4.3 @@ -9,7 +9,7 @@ 4.4 ifeq ($(shell uname -s), Darwin) 4.5 lib_so = libdrawtext.dylib 4.6 else 4.7 - lib_so = libdrawtext.so.0.0 4.8 + lib_so = libdrawtext.so.0.2 4.9 endif 4.10 4.11 $(bin): $(obj) $(lib_so) $(font)