Received a French version of the FAQ, in HTML format.
This commit is contained in:
parent
f3e17ad763
commit
85dfe3c7f7
3 changed files with 1178 additions and 1 deletions
29
docs/fr/Makefile
Normal file
29
docs/fr/Makefile
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# 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
|
||||
|
||||
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) $< > $@
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue