Added Makefile to convert HTML docs to plain text.
Recreated plain text docs based on HTML.
This commit is contained in:
parent
674b28c7e4
commit
fbbfb2fafd
2 changed files with 268 additions and 99 deletions
21
magic/docs/Makefile
Normal file
21
magic/docs/Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Makefile for Tux Paint Magic Tool Plugin API 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
|
||||
#
|
||||
# July 6, 2007 - July 6, 2007
|
||||
# $Id$
|
||||
|
||||
LINKS=links -dump -no-numbering -no-references
|
||||
|
||||
all: README.txt
|
||||
|
||||
clean:
|
||||
-rm README.txt
|
||||
|
||||
README.txt: html/README.html
|
||||
$(LINKS) $< > $@
|
||||
Loading…
Add table
Add a link
Reference in a new issue