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
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) $< > $@
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue