Handle 'frontend' as a non-recursive build.
[ttfautohint.git] / Makefile.am
blob180df0d79d532a227e5fe9117ee9183346c568fd
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 SUBDIRS = . \
8           doc
9 EXTRA_DIST = bootstrap \
10              bootstrap.conf \
11              FTL.TXT \
12              gnulib/m4/gnulib-cache.m4 \
13              GPLv2.TXT \
14              README \
15              TODO \
16              .version
18 BUILT_SOURCES = .version
19 .version:
20         echo $(VERSION) > $@-t && mv $@-t $@
22 dist-hook:
23         echo $(VERSION) > $(distdir)/VERSION.TXT
25 noinst_LTLIBRARIES =
26 MOSTLYCLEANFILES =
27 CLEANFILES =
28 DISTCLEANFILES =
29 MOSTLYCLEANDIRS =
31 AM_CPPFLAGS = -I$(top_builddir)/lib \
32               -I$(top_srcdir)/lib \
33               -I$(top_builddir)/gnulib/src \
34               -I$(top_srcdir)/gnulib/src
36 include $(top_srcdir)/gnulib/src/gnulib.mk
37 include $(top_srcdir)/lib/local.mk
38 include $(top_srcdir)/frontend/local.mk
40 ## end of Makefile.am