summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/cweb-latex
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2012-12-02 23:59:34 +0000
committerNorbert Preining <preining@logic.at>2012-12-02 23:59:34 +0000
commit50d02ff405a42c546de67a95c3031231aa1fcf39 (patch)
tree716e87b94648af8c59bd071baeb5c97ef8e6726d /Master/texmf-dist/source/latex/cweb-latex
parentdf141e41c79cc6a9b97f9ac0de97b19054849e9b (diff)
cweb-latex half-update fixing cweb.cls (needs patching) and location of
cwebbase.tex (wrongly installed as doc file) git-svn-id: svn://tug.org/texlive/trunk@28426 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/cweb-latex')
-rw-r--r--Master/texmf-dist/source/latex/cweb-latex/Makefile79
1 files changed, 0 insertions, 79 deletions
diff --git a/Master/texmf-dist/source/latex/cweb-latex/Makefile b/Master/texmf-dist/source/latex/cweb-latex/Makefile
deleted file mode 100644
index a280ae7cd99..00000000000
--- a/Master/texmf-dist/source/latex/cweb-latex/Makefile
+++ /dev/null
@@ -1,79 +0,0 @@
-# $Id: Makefile,v 1.5 1995/11/21 00:41:49 schrod Exp $
-#----------------------------------------------------------------------
-
-default:: install
-
-
-#
-# installation
-#
-
-# root of TDS compliant installation
-
- TEXMF = /usr/local/lib/texmf
-
-# Comment it out if you don't want to install contributed packages.
-# (Not recommended.)
-
- INSTALL_CONTRIB = install-contrib
-
-# installation target directories
-# (No need to change here for TDS installations.)
-
- LATEX = $(TEXMF)/tex/latex
- CWEB = $(LATEX)/cweb
-
- LATEX_DOC = $(TEXMF)/doc/latex
- CWEB_DOC = styles/cweb
-
-
-# installation actions
-
-.PHONY: install install-cweb-sty install-contrib
-
-install:: install-cweb-sty $(INSTALL_CONTRIB)
-
-install-cweb-sty:: $(LATEX) $(LATEX_DOC)
- test -d $(CWEB) || mkdir $(CWEB)
- cp *.sty *.cls $(CWEB)
- cd $(LATEX_DOC) ; \
- if [ ! -d $(CWEB_DOC) ] ; \
- then d=`echo $(CWEB_DOC) | sed 's:/.*::'` ; \
- test -d $$d || mkdir $$d ; \
- test -d $(CWEB_DOC) || mkdir $(CWEB_DOC) ; \
- fi
- cp *.dvi $(LATEX_DOC)/$(CWEB_DOC)
-
-install-contrib::
- cp contrib/*.sty $(CWEB)
- : cp contrib/*.dvi $(CWEB_DOC)
-
-$(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: distrib collect pack
-
-distrib:: collect pack
-
-pack::
- 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
- /bin/rm -f License
-
-collect::
- cd src ; imkmf ; make distrib
- cd examples ; make distrib
- : 'cd contrib ; make distrib'