@@ -65,7 +65,7 @@ RELEASE=1.6a2
6565# These must be declared phony since there
6666# are directories with matching names:
6767.PHONY : api doc ext lib mac ref tut
68- .PHONY : html info
68+ .PHONY : html info longhtml
6969
7070
7171# Main target
@@ -196,6 +196,9 @@ htmlref:
196196htmltut :
197197 (cd $( HTMLDIR) ; $( MAKE) PAPER=$( PAPER) -f ../html/Makefile tut)
198198
199+ longhtml :
200+ (cd longhtml; $( MAKE) PAPER=$( PAPER) )
201+
199202
200203# webchecker needs an extra flag to process the huge index from the libref
201204webcheck :
@@ -260,6 +263,11 @@ html-$(RELEASE).zip: html
260263 (cd $( HTMLDIR) ; \
261264 zip -q -9 ../$@ * index.html ??? /* .css ??? /* .html * /* .gif)
262265
266+ longhtml-$(RELEASE ) .zip : longhtml
267+ rm -f $@
268+ (cd longhtml; \
269+ zip -q -9 ../$@ * /* .css * /* .html * /* .gif)
270+
263271# convenience targets:
264272
265273tarhtml : html-$(RELEASE ) .tgz
@@ -271,11 +279,12 @@ tarlatex: latex-$(RELEASE).tgz
271279tarballs : tarpdf tarps tarhtml
272280
273281ziphtml : html-$(RELEASE ) .zip
282+ ziplonghtml : longhtml-$(RELEASE ) .zip
274283zipps : postscript-$(PAPER ) -$(RELEASE ) .zip
275284zippdf : pdf-$(PAPER ) -$(RELEASE ) .zip
276285ziplatex : latex-$(RELEASE ) .zip
277286
278- zips : zippdf zipps ziphtml
287+ zips : zippdf zipps ziphtml ziplonghtml
279288
280289bziphtml : html-$(RELEASE ) .tar.bz2
281290bzipinfo : info-$(RELEASE ) .tar.bz2
@@ -296,6 +305,7 @@ distfiles: tarballs zips bzips
296305# - useful results: .dvi, .pdf, .ps, .texi, .info
297306clean :
298307 (cd paper-$( PAPER) ; $( MAKE) clean)
308+ (cd longhtml; $( MAKE) clean)
299309 (cd $( HTMLDIR) ; $( MAKE) clean)
300310 (cd $( INFODIR) ; $( MAKE) clean)
301311
@@ -310,6 +320,7 @@ clobber:
310320 rm -f latex-$(RELEASE ) .tgz html-$(RELEASE ) .zip
311321 rm -f pdf-$(RELEASE ) .zip postscript-$(RELEASE ) .zip
312322 (cd paper-$( PAPER) ; $( MAKE) clobber)
323+ (cd longhtml; $( MAKE) clobber)
313324 (cd $( HTMLDIR) ; $( MAKE) clobber)
314325 (cd $( INFODIR) ; $( MAKE) clobber)
315326
0 commit comments