libdrawtext

view tools/font2glyphmap/Makefile @ 22:df6d52b36bd6

- properly supported building of no-freetype version, separately installed as libdrawtext-noft.whatever - saving/loading glyphmaps now work correctly - added nofreetype program in examples, to illustrate how to use libdrawtext-noft with prebuilt glyphmaps (see tools/font2glyphmap)
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 15 Apr 2014 05:10:39 +0300
parents
children 03699346d59f
line source
1 src = $(wildcard src/*.c)
2 obj = $(src:.c=.o)
3 bin = font2glyphmap
5 CC = gcc
6 CFLAGS = -pedantic -Wall -g -I../../src -I/usr/local/include
7 LDFLAGS = -L. -L/usr/local/lib -ldrawtext
9 ifeq ($(shell uname -s), Darwin)
10 lib_so = libdrawtext.dylib
11 else
12 lib_so = libdrawtext.so.0.0
13 endif
15 $(bin): $(obj) $(lib_so) $(font)
16 $(CC) -o $@ $(obj) $(LDFLAGS)
18 $(lib_so): ../../$(lib_so)
19 rm -f $@
20 ln -s $< $@
22 .PHONY: clean
23 clean:
24 rm -f $(obj) $(bin) $(lib_so)