Move functions related to TTC creation into separate file.
[ttfautohint.git] / src / Makefile.am
blobb2c68673a41563bb0b4afef17874c91b22b7d2a8
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                            tahints.c tahints.h \
31                            talatin.c talatin.h \
32                            taloader.c taloader.h \
33                            taloca.c \
34                            tamaxp.c \
35                            taprep.c \
36                            tasfnt.c \
37                            tasort.c tasort.h \
38                            tatables.c tatables.h \
39                            tatime.c \
40                            tattc.c \
41                            tattf.c \
42                            tatypes.h \
43                            ttfautohint.c ttfautohint.h ttfautohint-errors.h
45 bin_PROGRAMS = ttfautohint
46 ttfautohint_SOURCES = hint.c \
47                       ttfautohint.h
48 ttfautohint_LDADD = libttfautohint.a \
49                     $(FREETYPE_LDFLAGS)
51 dist_man_MANS = ttfautohint.1
53 ttfautohint.1: $(top_srcdir)/src/hint.c $(top_srcdir)/configure.ac
54         $(MAKE) $(AM_MAKEFLAGS) ttfautohint$(EXEEXT)
55         $(HELP2MAN) --output=$@ \
56                     --no-info \
57                     --name="add new auto-generated hints to a TrueType font" \
58                     ./ttfautohint$(EXEEXT)
60 ## end of Makefile.am