repo.or.cz
/
ttfautohint.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Ditto.
[ttfautohint.git]
/
src
/
Makefile.am
blob
fda318d50d001d526dda3bcc4fe4dd119a6f6be4
1
## Makefile.am
2
3
AM_CPPFLAGS = $(FREETYPE_CPPFLAGS)
4
AM_LDFLAGS = $(FREETYPE_LDFLAGS)
5
6
noinst_LIBRARIES = libttfautohint.a
7
libttfautohint_a_SOURCES = ta.h \
8
tadummy.c \
9
tadummy.h \
10
taglobal.c \
11
taglobal.h \
12
tahints.c \
13
tahints.h \
14
talatin.c \
15
talatin.h \
16
tasort.c \
17
tasort.h \
18
tatypes.h \
19
ttfautohint.c \
20
ttfautohint.h
21
22
noinst_PROGRAMS = hint
23
hint_SOURCES = hint.c \
24
ttfautohint.h
25
hint_LDADD = libttfautohint.a
26
27
## end of Makefile.am