Rename `tascript.h' to `ttfautohint-scripts.h'.
[ttfautohint.git] / lib / Makefile.am
blob088dde9d2b7ff864b358202c0ce93e6a52624f8d
1 ## Makefile.am
3 # Copyright (C) 2011-2013 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)
15 noinst_LTLIBRARIES = \
16   libttfautohint.la \
17   libnumberset.la
19 libnumberset_la_SOURCES = \
20   numberset.c numberset.h
22 libttfautohint_la_SOURCES = \
23   ta.h \
24   tablue.c tablue.h \
25   tabytecode.c tabytecode.h \
26   tacvt.c \
27   tadsig.c \
28   tadummy.c tadummy.h \
29   taerror.c \
30   tafile.c \
31   tafont.c \
32   tafpgm.c \
33   tagasp.c \
34   tagloadr.c tagloadr.h \
35   taglobal.c taglobal.h \
36   taglyf.c \
37   tagpos.c \
38   tahints.c tahints.h \
39   tahmtx.c \
40   talatin.c talatin.h \
41   taloader.c taloader.h \
42   taloca.c \
43   tamaxp.c \
44   taname.c \
45   tapost.c \
46   taprep.c \
47   tasfnt.c \
48   tasort.c tasort.h \
49   tatables.c tatables.h \
50   tatime.c \
51   tattc.c \
52   tattf.c \
53   tatypes.h \
54   tawrtsys.h \
55   ttfautohint.c \
56   ttfautohint.h ttfautohint-errors.h ttfautohint-scripts.h
58 libttfautohint_la_LIBADD = \
59   libnumberset.la
61 BUILT_SOURCES = \
62   tablue.c tablue.h
64 EXTRA_DIST = \
65   afblue.pl \
66   tablue.cin tablue.hin \
67   tablue.dat
69 tablue.c: tablue.dat tablue.cin
70         $(AM_V_GEN)rm -f $@-t $@ \
71         && perl afblue.pl $(srcdir)/tablue.dat \
72                           < $(srcdir)/tablue.cin \
73                           > $@-t \
74         && mv $@-t $@
76 tablue.h: tablue.dat tablue.hin
77         $(AM_V_GEN)rm -f $@-t $@ \
78         && perl afblue.pl $(srcdir)/tablue.dat \
79                           < $(srcdir)/tablue.hin \
80                           > $@-t \
81         && mv $@-t $@
83 ## end of Makefile.am