# 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 - October 9, 2005 # $Id$ LINKS=links -dump -no-numbering -no-references all: README.txt OPTIONS.txt FAQ.txt clean: -rm README.txt -rm OPTIONS.txt -rm FAQ.txt README.txt: html/README.html $(LINKS) $< > $@ OPTIONS.txt: html/OPTIONS.html $(LINKS) $< > $@ FAQ.txt: html/FAQ.html $(LINKS) $< > $@