Renamed reST files to *.txt and added index.txt which will make it easy to generate a web page.
This commit is contained in:
35
Makefile
35
Makefile
@@ -1,6 +1,39 @@
|
||||
SUBDIRS= lib tools man
|
||||
|
||||
all install uninstall clean:
|
||||
all install uninstall:
|
||||
for dir in $(SUBDIRS) ; do \
|
||||
(cd $$dir && $(MAKE) $@) ; \
|
||||
done
|
||||
|
||||
# reStructuredText Makefile
|
||||
|
||||
RST2HTML= rst2html.py
|
||||
RST2LATEX= rst2latex.py
|
||||
LATEX2PDF= pdflatex
|
||||
|
||||
RSTFILES= $(wildcard *.txt)
|
||||
HTMLFILES= $(RSTFILES:.txt=.html)
|
||||
LATEXFILES= $(RSTFILES:.txt=.tex)
|
||||
PDFFILES= $(RSTFILES:.txt=.pdf)
|
||||
|
||||
all: html pdf
|
||||
|
||||
html: $(HTMLFILES)
|
||||
latex: $(LATEXFILES)
|
||||
pdf: $(PDFFILES)
|
||||
|
||||
%.html: %.txt
|
||||
$(RST2HTML) $< > $@
|
||||
|
||||
%.tex: %.txt
|
||||
$(RST2LATEX) $< > $@
|
||||
|
||||
%.pdf: %.tex
|
||||
$(LATEX2PDF) $<
|
||||
|
||||
clean:
|
||||
for dir in $(SUBDIRS) ; do \
|
||||
(cd $$dir && $(MAKE) $@) ; \
|
||||
done
|
||||
rm -f $(HTMLFILES) $(LATEXFILES) $(PDFFILES)
|
||||
rm -f *.aux *.log *.out
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
# reStructuredText Makefile
|
||||
|
||||
RST2HTML= rst2html.py
|
||||
RST2LATEX= rst2latex.py
|
||||
LATEX2PDF= pdflatex
|
||||
|
||||
RSTFILES= $(wildcard *.txt)
|
||||
HTMLFILES= $(RSTFILES:.txt=.html)
|
||||
LATEXFILES= $(RSTFILES:.txt=.tex)
|
||||
PDFFILES= $(RSTFILES:.txt=.pdf)
|
||||
|
||||
all: html pdf
|
||||
|
||||
html: $(HTMLFILES)
|
||||
latex: $(LATEXFILES)
|
||||
pdf: $(PDFFILES)
|
||||
|
||||
%.html: %.txt
|
||||
$(RST2HTML) $< > $@
|
||||
|
||||
%.tex: %.txt
|
||||
$(RST2LATEX) $< > $@
|
||||
|
||||
%.pdf: %.tex
|
||||
$(LATEX2PDF) $<
|
||||
|
||||
clean:
|
||||
rm -f $(HTMLFILES) $(LATEXFILES) $(PDFFILES)
|
||||
rm -f *.aux *.log *.out
|
||||
94
index.txt
Normal file
94
index.txt
Normal file
@@ -0,0 +1,94 @@
|
||||
========
|
||||
cuetools
|
||||
========
|
||||
|
||||
:Author: Svend Sorensen
|
||||
:Contact: sorensen@users.berlios.de
|
||||
|
||||
cuetools is a set of utilites for working with Cue Sheet (cue) and Table of
|
||||
Contents (toc) files.
|
||||
|
||||
.. contents::
|
||||
|
||||
Documentation
|
||||
=============
|
||||
|
||||
cuetools Docs
|
||||
-------------
|
||||
|
||||
README.txt_
|
||||
Program Notes
|
||||
CHANGES.txt_
|
||||
Change Summary
|
||||
BUGS.txt_
|
||||
Program Bugs/TODO
|
||||
COPYING_
|
||||
License Information
|
||||
formats.txt_
|
||||
Description of the Cue Sheet/Table of Contents File Formats
|
||||
|
||||
Man Pages
|
||||
---------
|
||||
|
||||
cuebreakpoints.man_
|
||||
cuebreakpoints(1) manual page
|
||||
cueconvert.man_
|
||||
cueconvert(1) manual page
|
||||
cueprint.man_
|
||||
cueprint(1) manual page
|
||||
|
||||
.. _README.txt: README.html
|
||||
.. _CHANGES.txt: CHANGES.html
|
||||
.. _BUGS.txt: BUGS.html
|
||||
.. _COPYING: COPYING
|
||||
.. _formats.txt: formats.html
|
||||
|
||||
.. _cuebreakpoints.man: man/cuebreakpoints.html
|
||||
.. _cueconvert.man: man/cueconvert.html
|
||||
.. _cueprint.man: man/cueprint.html
|
||||
|
||||
Resources
|
||||
=========
|
||||
|
||||
Project Links
|
||||
-------------
|
||||
|
||||
* cuetools `project page`_ [1]_
|
||||
* cuetools `downloads`_ [1]_
|
||||
* cuetools `Subversion repository`_ (ViewCVS_) [1]_
|
||||
* cueconvert `web interface`_
|
||||
|
||||
.. _project page: http://developer.berlios.de/projects/cuetools/
|
||||
.. _downloads: http://developer.berlios.de/project/showfiles.php?group_id=2130
|
||||
.. _Subversion repository: http://developer.berlios.de/svn/?group_id=2130
|
||||
.. _ViewCVS: http://svn.berlios.de/viewcvs/cuetools
|
||||
.. _web interface: http://sorensen.freeshell.org/cuetools/cueconvert.html
|
||||
|
||||
Mailing Lists [1]_
|
||||
------------------
|
||||
|
||||
cuetools-announce_
|
||||
news and announcements (cuetools-announce@lists.berlios.de)
|
||||
cuetools-users_
|
||||
general discussion (cuetools-users@lists.berlios.de)
|
||||
|
||||
.. _cuetools-users: https://lists.berlios.de/pipermail/cuetools-users
|
||||
.. _cuetools-announce: https://lists.berlios.de/pipermail/cuetools-announce
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
* Cdrdao_
|
||||
* cdrdao(1) man page - description of toc file format
|
||||
* shntool_
|
||||
|
||||
.. _Cdrdao: http://cdrdao.sourceforge.net
|
||||
.. _shntool: http://www.etree.org/shnutils/shntool/
|
||||
|
||||
.. [1] Hosted by |BerliOS|
|
||||
|
||||
.. |BerliOS| image:: http://developer.berlios.de/bslogo.php?group_id=2130
|
||||
:alt: BerliOS Developer Logo
|
||||
:target: http://developer.berlios.de
|
||||
:height: 32
|
||||
:width: 124
|
||||
Reference in New Issue
Block a user