all: html2text

html2text: file.html
	lynx -dump file.html > file.txt

clean:
	rm -f file.txt
