[configure] Minor improvement.
[ttfautohint.git] / frontend / Makefile.am
blob0c910208ac4d87988f05606f5d0b396b17f42c88
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 SUFFIXES = .moc.cpp .h
15 .h.moc.cpp:
16         $(MOC) $(QT_CPPFLAGS) $(EXTRA_CPPFLAGS) $< -o $@
18 DISTCLEANFILES = $(BUILT_SOURCES)
20 AM_CPPFLAGS = -I$(top_srcdir)/lib \
21               -I$(top_builddir)/gnulib/src \
22               -I$(top_srcdir)/gnulib/src \
23               $(FREETYPE_CPPFLAGS)
24 LDADD = $(top_builddir)/lib/libttfautohint.a \
25         $(top_builddir)/gnulib/src/libgnu.la \
26         $(LTLIBINTL) \
27         $(LTLIBTHREAD) \
28         $(FREETYPE_LIBS)
30 bin_PROGRAMS = ttfautohint
31 ttfautohint_SOURCES = main.cpp
33 if USE_QT
34   AM_CXXFLAGS = $(QT_CXXFLAGS)
35   AM_LDFLAGS = $(QT_LDFLAGS)
36   AM_CPPFLAGS += $(QT_CPPFLAGS)
37   LDADD += $(QT_LIBS)
39   ttfautohint_SOURCES += maingui.cpp \
40                          maingui.h \
41                          maingui.moc.cpp
43   BUILT_SOURCES = maingui.moc.cpp
44 endif
46 dist_man_MANS = ttfautohint.1
48 ttfautohint.1: $(top_srcdir)/frontend/main.cpp $(top_srcdir)/configure.ac
49         $(MAKE) $(AM_MAKEFLAGS) ttfautohint$(EXEEXT)
50         $(HELP2MAN) --output=$@ \
51                     --no-info \
52                     --name="add new auto-generated hints to a TrueType font" \
53                     --help-option=--help-all \
54                     ./ttfautohint$(EXEEXT)
56 # end of Makefile.am