blob: f2633d5df526ed6ef915e84e6b4b697308b2f338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
## Makefile.am for the TeX Live subdirectory texk/kpathsea/man/
##
## Copyright (C) 2009 - 2011 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
man_sources = \
kpseaccess.man \
kpsereadlink.man \
kpsestat.man \
kpsewhich.man \
mktexlsr.man \
mktexmf.man \
mktexpk.man \
mktextfm.man
EXTRA_DIST = $(man_sources)
KPATHSEA_PATHS_H = ${top_builddir}/..
include $(top_srcdir)/../am/man.am
# Symlinks within $(man1dir): FILE:LINK indicates LINK.1->FILE.1
man1_links = \
mktexlsr:texhash
include $(top_srcdir)/../am/man1_links.am
install-data-hook: install-man1-links
uninstall-hook: uninstall-man1-links
|