Fix OTS warning about `maxp.maxSizeOfInstructions`.
[ttfautohint.git] / Makefile.am
blobe54686eab32171fbe07438e90711279e627c4bf3
1 # Makefile.am
3 # due to a limitation of `autoreconf',
4 # all -I directives currently must be set on a single line
5 ACLOCAL_AMFLAGS = -I gnulib/m4 -I m4
7 EXTRA_DIST = bootstrap \
8              bootstrap.conf \
9              FTL.TXT \
10              gnulib/m4/gnulib-cache.m4 \
11              gnulib/prefix-gnulib-mk.diff \
12              GPLv2.TXT \
13              README \
14              TODO \
15              .version
17 BUILT_SOURCES = .version
18 .version:
19         echo $(VERSION) > $@-t && mv $@-t $@
21 dist-hook:
22         echo $(VERSION) > $(distdir)/VERSION.TXT
24 noinst_LTLIBRARIES =
25 MOSTLYCLEANFILES =
26 CLEANFILES =
27 DISTCLEANFILES =
28 MOSTLYCLEANDIRS =
30 AM_CPPFLAGS = -I$(top_builddir)/lib \
31               -I$(top_srcdir)/lib \
32               -I$(top_builddir)/gnulib/src \
33               -I$(top_srcdir)/gnulib/src
35 include $(top_srcdir)/gnulib/src/gnulib.mk
36 include $(top_srcdir)/lib/local.mk
37 include $(top_srcdir)/frontend/local.mk
38 include $(top_srcdir)/doc/local.mk
40 # end of Makefile.am