1# Help the Developers and yourself.  Just use the C locale and settings
2# for the compilation. They can still be overriden by make LANG=<whatever>
3# but that is general a not very good idea
4LANG=C
5LC_ALL=C
6
7BUILT_SOURCES =
8BUILT_MANS =
9EXTRA_DIST = $(BUILT_SOURCES) $(BUILT_MANS)
10
11man1_MANS =
12man1_MANS += $(BUILT_MANS)
13
14BUILT_MANS += yuck.man
15
16VPATH += $(builddir):$(srcdir):$(top_builddir)/src:$(top_srcdir)/src
17EXTRA_DIST += author.h2m
18
19## help2man helpers
20SUFFIXES = .yuck
21SUFFIXES += .man
22yuck.man: $(top_builddir)/.version
23.yuck.man:
24	$(AM_V_GEN) YUCK_TEMPLATE_PATH="$(abs_top_srcdir)/src" \
25		$(top_builddir)/src/yuck genman \
26			-i "$(srcdir)/author.h2m" \
27			-o $@ --version-file $(top_builddir)/.version $<
28
29## Makefile.am ends here
30