Move functions related to `maxp' table into separate file.
[ttfautohint.git] / src / Makefile.am
blob0580e3570a4ff0d128c4520e5eac1b68ca95616c
1 ## Makefile.am
3 # Copyright (C) 2011 by Werner Lemberg.
5 # This file is part of the ttfautohint library, and may only be used,
6 # modified, and distributed under the terms given in `COPYING'.  By
7 # continuing to use, modify, or distribute this file you indicate that you
8 # have read `COPYING' and understand and accept it fully.
10 # The file `COPYING' mentioned in the previous paragraph is distributed
11 # with the ttfautohint library.
13 AM_CPPFLAGS = $(FREETYPE_CPPFLAGS)
14 AM_LDFLAGS = $(FREETYPE_LDFLAGS)
16 noinst_LIBRARIES = libttfautohint.a
17 libttfautohint_a_SOURCES = ta.h \
18                            tabytecode.c tabytecode.h \
19                            tacvt.c \
20                            tadummy.c tadummy.h \
21                            tafpgm.c \
22                            tagloadr.c tagloadr.h \
23                            taglobal.c taglobal.h \
24                            taglyf.c \
25                            tahints.c tahints.h \
26                            talatin.c talatin.h \
27                            taloader.c taloader.h \
28                            taloca.c \
29                            tamaxp.c \
30                            taprep.c \
31                            tasort.c tasort.h \
32                            tatables.c tatables.h \
33                            tatypes.h \
34                            ttfautohint.c ttfautohint.h ttfautohint-errors.h
36 bin_PROGRAMS = ttfautohint
37 ttfautohint_SOURCES = hint.c \
38                       ttfautohint.h
39 ttfautohint_LDADD = libttfautohint.a \
40                     $(FREETYPE_LDFLAGS)
42 dist_man_MANS = ttfautohint.1
44 ttfautohint.1: hint.c $(top_srcdir)/configure.ac
45         $(MAKE) $(AM_MAKEFLAGS) ttfautohint$(EXEEXT)
46         help2man --output=ttfautohint.1 \
47                  --no-info \
48                  --name="add new auto-generated hints to a TrueType font" \
49                  ./ttfautohint$(EXEEXT)
51 ## end of Makefile.am