summaryrefslogtreecommitdiff
path: root/src/vim-latex/doc/Makefile
diff options
context:
space:
mode:
authorDavid Kaufmann <astra@fsinf.at>2011-11-15 16:48:21 +0100
committerDavid Kaufmann <astra@fsinf.at>2011-11-15 16:48:21 +0100
commit5cffdb1f6922496d1bb3b3aae4152df64e0bc87f (patch)
tree7df4ee4d1a8209ed01d5aa4a1ab8d6fbba902893 /src/vim-latex/doc/Makefile
parent890bcf73e280fcf2d518ea6396de9afc0141e1df (diff)
downloadconfig-5cffdb1f6922496d1bb3b3aae4152df64e0bc87f.tar.gz
submodule stuff
Diffstat (limited to 'src/vim-latex/doc/Makefile')
-rw-r--r--src/vim-latex/doc/Makefile62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/vim-latex/doc/Makefile b/src/vim-latex/doc/Makefile
deleted file mode 100644
index 7e05e67..0000000
--- a/src/vim-latex/doc/Makefile
+++ /dev/null
@@ -1,62 +0,0 @@
-projects = latex-suite latex-suite-quickstart
-htmlfiles = $(addsuffix .html, $(projects))
-txtfiles = $(addsuffix .txt, $(projects))
-cssfiles = $(addsuffix .css, $(projects))
-all = $(projects) $(htmlfiles) $(cssfiles) $(txtfiles)
-
-
-xsltproc=xsltproc
-db2vim=db2vim/db2vim
-
-# Use for debugging:
-#xsltproc=strace -e trace=file xsltproc --nonet --load-trace
-# export XML_DEBUG_CATALOG = 1
-
-# Specify local catalog to not use system installed dtd/xsl files
-# export XML_CATALOG_FILES=catalog.xml
-
-# User configuration of this Makefile goes into Makefile.local
-# E.g. to use a catalog file installed by the user.
--include Makefile.local
-
-# Default Target is to create all documentation files
-all: $(all)
-
-# create multi page html (chunk xhtml)
-$(projects): %: %.xml latex-suite-chunk.xsl latex-suite-common.xsl
- $(xsltproc) -o $@/ latex-suite-chunk.xsl $<
-
-# create single html files
-$(htmlfiles): %.html: %.xml latex-suite.xsl latex-suite-common.xsl
- $(xsltproc) -o $@ latex-suite.xsl $<
-
-# create vim flat files
-latex-suite.txt: %.txt: %.xml
- $(db2vim) --prefix=ls_ $< > $@
-
-latex-suite-quickstart.txt: %.txt: %.xml
- $(db2vim) --prefix=lq_ $< > $@
-
-# validate xml
-validate:
- for file in *.xml; do \
- xmllint --valid --noout $$file; \
- done
-
-clean:
- rm -f $(htmlfiles)
- rm -rf $(projects)
-
-# $(txtfiles) are currently in revision control, therefore they are not
-# removed in the clean target
-mr-proper: clean
- rm -f $(txtfiles)
-
-upload: $(all)
-# vim-latex-web is configured in ~/.ssh/config
-#Host vim-latex-web
-# Hostname web.sourceforge.net
-# User SOURCEFORGE_USERNAME,vim-latex
- rsync --perms --chmod g+w,o-w --delete -lrtvz $(all) vim-latex-web:/home/groups/v/vi/vim-latex/htdocs/documentation/
-
-# vim:nowrap