Created Makefile to convert HTML documentation into plaintext using Links.
This commit is contained in:
parent
49d4667bce
commit
66a45943d1
4 changed files with 44 additions and 14 deletions
|
|
@ -7,7 +7,7 @@ bill@newbreedsoftware.com
|
|||
http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
|
||||
2005.Jul.30 (0.9.15)
|
||||
2005.Sept.4 (0.9.15)
|
||||
|
||||
* uncatagorized and messy:
|
||||
-----------------------
|
||||
|
|
@ -229,6 +229,9 @@ http://www.newbreedsoftware.com/tuxpaint/
|
|||
|
||||
* Compiling, porting and packaging updates:
|
||||
-----------------------------------------
|
||||
* Created Makefile to convert HTML documentation into plaintext using Links
|
||||
(I can never remember the precise options!)
|
||||
|
||||
* *_PREFIX variables in Makefile no longer need trailing '/'.
|
||||
|
||||
* Added "Categories" to the 'tuxpaint.desktop' file
|
||||
|
|
|
|||
25
docs/Makefile
Normal file
25
docs/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Makefile for Tux Paint docs
|
||||
#
|
||||
# Uses "links" to convert docs from HTML to plain text.
|
||||
# (Normally only ran by the developers after updating the HTML, prior to
|
||||
# release.)
|
||||
#
|
||||
# Bill Kendrick
|
||||
# bill@newbreedsoftware.com
|
||||
#
|
||||
# Sept. 4, 2005 - Sept. 4, 2005
|
||||
|
||||
LINKS=links -dump -no-numbering -no-references
|
||||
|
||||
all: README.txt OPTIONS.txt
|
||||
|
||||
clean:
|
||||
-rm README.txt
|
||||
-rm OPTIONS.txt
|
||||
|
||||
README.txt: html/README.html
|
||||
$(LINKS) $< > $@
|
||||
|
||||
OPTIONS.txt: html/OPTIONS.html
|
||||
$(LINKS) $< > $@
|
||||
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
bill@newbreedsoftware.com
|
||||
http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
July 16, 2005
|
||||
September 4, 2005
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
|
|
@ -232,11 +232,12 @@ Windows Users
|
|||
This can help when Tux Paint is run on very slow computers, or
|
||||
displayed on a remote X-Window display.
|
||||
|
||||
nosysfonts=yes
|
||||
sysfonts=yes
|
||||
|
||||
This option prevents Tux Paint from attempting to load fonts
|
||||
(for use in the Text tool) from your operating system. It will
|
||||
only load the ones that come with Tux Paint.
|
||||
This option causes Tux Paint to attempt to load fonts (for use
|
||||
in the Text tool) from your operating system. Normally,
|
||||
Tux Paint will only load the ones that came bundled with
|
||||
Tux Paint.
|
||||
|
||||
nostamps=yes
|
||||
|
||||
|
|
@ -470,7 +471,7 @@ Windows Users
|
|||
--nooutlines
|
||||
--nostamps
|
||||
--nostampcontrols
|
||||
--nosysfonts
|
||||
--sysfonts
|
||||
--mirrorstamps
|
||||
--keyboard
|
||||
--savedir DIRECTORY
|
||||
|
|
@ -500,7 +501,7 @@ Windows Users
|
|||
--outlines
|
||||
--stamps
|
||||
--stampcontrols
|
||||
--sysfonts
|
||||
--nosysfonts
|
||||
--dontmirrorstamps
|
||||
--mouse
|
||||
--saveoverask
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ New Breed Software</p>
|
|||
<p><a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a><br>
|
||||
<a href="http://www.newbreedsoftware.com/tuxpaint/">http://www.newbreedsoftware.com/tuxpaint/</a></p>
|
||||
|
||||
<p>July 16, 2005</p>
|
||||
<p>September 4, 2005</p>
|
||||
</center>
|
||||
|
||||
<hr size=2 noshade>
|
||||
|
|
@ -294,11 +294,12 @@ New Breed Software</p>
|
|||
or displayed on a remote X-Window display.</p>
|
||||
</dd>
|
||||
|
||||
<dt><code><b>nosysfonts=yes</b></code></dt>
|
||||
<dt><code><b>sysfonts=yes</b></code></dt>
|
||||
<dd>
|
||||
<p>This option prevents Tux Paint from attempting to load fonts
|
||||
<p>This option causes Tux Paint to attempt to load fonts
|
||||
(for use in the <b>Text</b> tool) from your operating system.
|
||||
It will only load the ones that come with Tux Paint.</p>
|
||||
Normally, Tux Paint will only load the ones that came bundled
|
||||
with Tux Paint.</p>
|
||||
</dd>
|
||||
|
||||
<dt><code><b>nostamps=yes</b></code></dt>
|
||||
|
|
@ -726,7 +727,7 @@ New Breed Software</p>
|
|||
--nooutlines<br>
|
||||
--nostamps<br>
|
||||
--nostampcontrols<br>
|
||||
--nosysfonts<br>
|
||||
--sysfonts<br>
|
||||
--mirrorstamps<br>
|
||||
--keyboard<br>
|
||||
--savedir DIRECTORY<br>
|
||||
|
|
@ -759,7 +760,7 @@ New Breed Software</p>
|
|||
--outlines<br>
|
||||
--stamps<br>
|
||||
--stampcontrols<br>
|
||||
--sysfonts<br>
|
||||
--nosysfonts<br>
|
||||
--dontmirrorstamps<br>
|
||||
--mouse<br>
|
||||
--saveoverask<br>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue