mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
20e588c35e
to give feedback. (I think the latter has suddenly become worthwhile now we have the ability to distribute a help file; so people won't have to come to the website for the feedback information.) [originally from svn r1502]
19 lines
487 B
Makefile
19 lines
487 B
Makefile
CHAPTERS := blurb intro gs using config pscp psftp plink pubkey pageant
|
|
CHAPTERS += faq feedback licence
|
|
|
|
INPUTS = $(patsubst %,%.but,$(CHAPTERS))
|
|
|
|
# This is temporary. Hack it locally or something.
|
|
BUTTRESS = $(HOME)/src/buttress/build/buttress
|
|
|
|
Contents.html: $(INPUTS)
|
|
$(HOME)/src/buttress/build/buttress $(INPUTS)
|
|
rm -f index.html
|
|
ln -s Contents.html index.html
|
|
mv output.txt puttydoc.txt
|
|
mv output.hlp putty.hlp
|
|
mv output.cnt putty.cnt
|
|
|
|
clean:
|
|
rm -f *.html *.txt *.hlp *.cnt
|