Typo.
[ttfautohint.git] / src / Makefile.am
blobec71e747bce5a8535880034e03ebcf579b1c4ef7
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                            tahints.c tahints.h \
25                            talatin.c talatin.h \
26                            taloader.c taloader.h \
27                            taprep.c \
28                            tasort.c tasort.h \
29                            tatables.c tatables.h \
30                            tatypes.h \
31                            ttfautohint.c ttfautohint.h
33 bin_PROGRAMS = ttfautohint
34 ttfautohint_SOURCES = hint.c \
35                       ttfautohint.h
36 ttfautohint_LDADD = libttfautohint.a \
37                     $(FREETYPE_LDFLAGS)
39 dist_man_MANS = ttfautohint.1
41 ttfautohint.1: hint.c $(top_srcdir)/configure.ac
42         $(MAKE) $(AM_MAKEFLAGS) ttfautohint$(EXEEXT)
43         help2man --output=ttfautohint.1 \
44                  --no-info \
45                  --name="add new auto-generated hints to a TrueType font" \
46                  ./ttfautohint$(EXEEXT)
48 ## end of Makefile.am