1## Process this file with automake to produce Makefile.in
2
3#
4#	NOTE:  this file will probably be changed by gettextize, so don't
5#	commit changed version into CVS.
6#
7
8bin_PROGRAMS = gtypist
9gtypist_SOURCES = gtypist.c cursmenu.c script.c error.c getopt.c getopt1.c \
10		cursmenu.h error.h getopt.h gettext.h gtypist.h script.h utf8.c utf8.h
11gtypist_LDADD = @LIBINTL@ @LIBICONV@
12
13AM_CPPFLAGS = -I../intl \
14  -DDATADIR=\"$(pkgdatadir)\" \
15  -DLOCALEDIR=\"$(datadir)/locale\"
16
17# GEN_MAN is a shell command that generates the man page
18
19man_MANS = gtypist.1
20
21GEN_MAN=@GEN_MAN@
22
23gtypist.1: gtypist.c gtypist
24	if (test ! -e gtypist.1) then $(GEN_MAN); fi
25
26MAINTAINERCLEANFILES = gtypist.1
27