tuxpaint-pencil-sharpener/magic/docs/Makefile
Albert Cahalan 7323132d08 use .PHONY
2008-04-27 17:22:01 +00:00

23 lines
446 B
Makefile

# 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
.PHONY: all
all: README.txt
.PHONY: clean
clean:
-rm README.txt
README.txt: html/README.html
$(LINKS) $< > $@