blob: c069723a2c5d08ea26e4d8b66128a01778c2402e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $Id$
# Standalone Makefile for hitex/doc. Public domain.
# This is not run as part of the build, just a convenience used by hand
# from the Build/source/... directory.
INSTALL_DATA = cp -pfv
texmf_dist = ../../../../../../Master/texmf-dist
hitex_makeindex_dir = $(texmf_dist)/makeindex/hitex/hint.ist
hitex_doc_dir = $(texmf_dist)/doc/hitex/base
#
install:
$(INSTALL_DATA) hint.ist $(hitex_makeindex_dir)
for f in hiformat.hnt hiformat.pdf hint.sty \
hitexman.hnt hitexman.pdf hitexman.tex; do \
$(INSTALL_DATA) $$f $(hitex_doc_dir)/ || exit 1; done
|