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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
# $Id: Makefile,v 1.5 1995/08/02 14:55:52 schrod Exp $
#----------------------------------------------------------------------
default:: install
#
# installation
#
# root of TDS compliant installation, AUC-TeX root
TEXMF = /usr/local/lib/texmf
AUCTEX = /usr/local/lib/xemacs/site-lisp/auctex
# installation target directories
# (No need to change here for TDS installations.)
LATEX = $(TEXMF)/tex/latex
RCS = $(LATEX)/misc
LATEX_DOC = $(TEXMF)/doc/latex
RCS_DOC = styles/rcs
# installation actions
.PHONY: install
install:: $(LATEX) $(LATEX_DOC)
test -d $(RCS) || mkdir $(RCS)
cp rcs.sty $(RCS)
cd $(LATEX_DOC) ; \
if [ ! -d $(RCS_DOC) ] ; \
then d=`echo $(RCS_DOC) | sed 's:/.*::'` ; \
test -d $$d || mkdir $$d ; \
test -d $(RCS_DOC) || mkdir $(RCS_DOC) ; \
fi
cp *.dvi $(LATEX_DOC)/$(RCS_DOC)
@if [ -d $(AUCTEX) ] ; \
then set -x ; cp rcs.el $(AUCTEX)/style ; \
else echo "No AUC-TeX dir, skipping installation of rcs.el." >&2 ; \
fi
$(LATEX):
@echo "You don't have a LaTeX styles directory (tree)." >&2
@exit 1
$(LATEX_DOC):
@echo "You don't have a LaTeX documentation directory (tree)." >&2
@exit 1
#
# management tasks
#
.PHONY: export
export::
cd src ; imkmf ; make export
cp $(HOME)/Notes/Copying.gpl License
pwd=`pwd` ; pwd=`suffix $$pwd /` ; cd .. ; \
gtar -czvf $$pwd.tar.gz \
--exclude=CVS --exclude=.cvsignore --exclude=.rcsrc $$pwd ; \
cp $$pwd/README $$pwd.README
|