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 32 33 34 35 36 37 38 39
|
# Generated automatically from Makefile.in by configure.
# Copyright (c) 2000, FundsXpress Financial Network, Inc.
# This library is free software released "AS IS WITH ALL FAULTS"
# and WITHOUT ANY WARRANTIES under the terms of the GNU Lesser
# General Public License, Version 2.1, a copy of which can be
# found in the "COPYING" file of this distribution.
# $Id: Makefile,v 1.1.1.1 2003/12/06 19:47:26 hartmans Exp $
srcdir=.
top_srcdir=..
# Adjust the following relative path so that it points to the right place
buildtop = ..
include $(buildtop)/mk/common.mk
TEXROOTS = intro parser runtime style distribution
clean::
rm -f *.sty
for i in $(TEXROOTS); do \
rm -f $$i.aux $$i.dvi $$i.idx $$i.log $$i.toc $$i.ind $$i.ilg; done
doc:: doc-copy doc-premake
for i in $(TEXROOTS); do \
if [ ! -e $$i.dvi ]; then \
latex $$i; \
if [ -e $$i.idx ]; then makeindex $$i; fi; \
latex $$i; \
latex $$i; \
fi; \
done;
doc-copy:
cp $(srcdir)/*.sty .
for i in $(TEXROOTS); do cp $(srcdir)/$$i.tex .; done
install-doc::
${ENSUREDIR} ${inst_dvidir}/doc
for i in $(TEXROOTS); do \
${INSTALL_DATA} $$i.dvi ${inst_dvidir}/doc/$$i.dvi; done
|