mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
af2c66be95
[originally from svn r1802]
19 lines
482 B
Makefile
19 lines
482 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.
|
|
HALIBUT = $(HOME)/src/halibut/build/halibut
|
|
|
|
Contents.html: $(INPUTS)
|
|
$(HOME)/src/halibut/build/halibut $(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
|