Recompute more fields of the `maxp' table.
[ttfautohint.git] / src / Makefile.am
blob699d830325eb013d884ee2ee5bcd83397502d1a8
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                            tadsig.c \
21                            tadummy.c tadummy.h \
22                            taerror.c \
23                            tafile.c \
24                            tafont.c \
25                            tafpgm.c \
26                            tagasp.c \
27                            tagloadr.c tagloadr.h \
28                            taglobal.c taglobal.h \
29                            taglyf.c \
30                            tagpos.c \
31                            tahints.c tahints.h \
32                            tahmtx.c \
33                            talatin.c talatin.h \
34                            taloader.c taloader.h \
35                            taloca.c \
36                            tamaxp.c \
37                            tapost.c \
38                            taprep.c \
39                            tasfnt.c \
40                            tasort.c tasort.h \
41                            tatables.c tatables.h \
42                            tatime.c \
43                            tattc.c \
44                            tattf.c \
45                            tatypes.h \
46                            ttfautohint.c ttfautohint.h ttfautohint-errors.h
48 bin_PROGRAMS = ttfautohint
49 ttfautohint_SOURCES = hint.c \
50                       ttfautohint.h
51 ttfautohint_LDADD = libttfautohint.a \
52                     $(FREETYPE_LDFLAGS)
54 dist_man_MANS = ttfautohint.1
56 ttfautohint.1: $(top_srcdir)/src/hint.c $(top_srcdir)/configure.ac
57         $(MAKE) $(AM_MAKEFLAGS) ttfautohint$(EXEEXT)
58         $(HELP2MAN) --output=$@ \
59                     --no-info \
60                     --name="add new auto-generated hints to a TrueType font" \
61                     ./ttfautohint$(EXEEXT)
63 ## end of Makefile.am