libdrawtext

view tools/font2glyphmap/Makefile @ 73:850335344428

font2glyphmap tool
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 15 Apr 2014 03:33: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)