Start with an interface to the imported FreeType files.
[ttfautohint.git] / src / Makefile.am
blob19566a47922b048edacabc9d6645f569612d34eb
1 ## Makefile.am
3 AM_CPPFLAGS = $(FREETYPE_CPPFLAGS)
4 AM_LDFLAGS = $(FREETYPE_LDFLAGS)
6 noinst_LIBRARIES = libttfautohint.a
7 libttfautohint_a_SOURCES = ta.h \
8                            tabytecode.c \
9                            tabytecode.h \
10                            tadummy.c \
11                            tadummy.h \
12                            tagloadr.c \
13                            tagloadr.h \
14                            taglobal.c \
15                            taglobal.h \
16                            tahints.c \
17                            tahints.h \
18                            talatin.c \
19                            talatin.h \
20                            taloader.c \
21                            taloader.h \
22                            tasort.c \
23                            tasort.h \
24                            tatypes.h \
25                            ttfautohint.c \
26                            ttfautohint.h
28 noinst_PROGRAMS = hint
29 hint_SOURCES = hint.c \
30                ttfautohint.h
31 hint_LDADD = libttfautohint.a
33 ## end of Makefile.am