Reasonably grotty hacks so that the droppings left by the man page
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 30 Mar 2004 21:35:56 +0000 (21:35 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 30 Mar 2004 21:35:56 +0000 (21:35 +0000)
generation don't interfere with the main HTML doc generation.

git-svn-id: svn://svn.tartarus.org/sgt/putty@4006 cda61777-01e9-0310-a592-d414129be87e

doc/Makefile

index cddc0a9..15bcc2f 100644 (file)
@@ -6,7 +6,11 @@ INPUTS = $(patsubst %,%.but,$(CHAPTERS))
 # This is temporary. Hack it locally or something.
 HALIBUT = $(HOME)/src/halibut/build/halibut
 
-all: Contents.html man
+DROPPINGS := output.txt output.hlp output.cnt output.1
+DROPPINGS += Contents.html IndexPage.html Chapter*.html Section*.html
+DROPPINGS += Appendix*.html
+
+all: man Contents.html
 
 Contents.html: $(INPUTS)
        $(HALIBUT) $(INPUTS)
@@ -16,7 +20,7 @@ Contents.html: $(INPUTS)
        mv output.hlp putty.hlp
        mv output.cnt putty.cnt
 
-MKMAN = $(HALIBUT) mancfg.but $< && mv output.1 $@
+MKMAN = $(HALIBUT) mancfg.but $< && mv output.1 $@ && rm -f $(DROPPINGS)
 MANPAGES = putty.1 puttygen.1 plink.1 pscp.1 psftp.1 puttytel.1 pterm.1
 man: $(MANPAGES)