1Trace o
2Parse Arg 'src=' srcdir 'ext=' html_ext 'ver=' ver_dot 'dest=' dest 'doc=' docdir 'overview=' overview 'comm=' comm 'commset=' commset 'commsos=' commsos 'query=' query 'glossary=' glossary 'appendix1=' appendix1 'appendix2=' appendix2 'appendix3=' appendix3 'appendix4=' appendix4 'appendix7=' appendix7
3srcdir = Strip( srcdir )
4html_ext = Strip( html_ext )
5ver_dot = Strip( ver_dot )
6dest = Strip( dest )
7docdir = strip( docdir )
8overview = Strip( overview )
9comm = Strip( comm )
10commset = Strip( commset )
11commsos = Strip( commsos )
12query = Strip( query )
13glossary = Strip( glossary )
14appendix1 = Strip( appendix1 )
15appendix2 = Strip( appendix2 )
16appendix3 = Strip( appendix3 )
17appendix4 = Strip( appendix4 )
18appendix7 = Strip( appendix7 )
19'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'TOCSTART >' dest'/index'HTML_EXT
20'./manext' overview '>' dest'/overview.man'
21'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'OVERVIEW' dest'/overview.man' dest'/index'HTML_EXT '>' dest'/overview'HTML_EXT
22'./manext' COMM '>' dest'/comm.man'
23'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'COMM' dest'/comm.man' dest'/index'HTML_EXT '>' dest'/comm'HTML_EXT
24'./manext' COMMSET '>' dest'/commset.man'
25'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'COMMSET' dest'/commset.man' dest'/index'HTML_EXT '>' dest'/commset'HTML_EXT
26'./manext' COMMSOS '>' dest'/commsos.man'
27'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'COMMSOS' dest'/commsos.man' dest'/index'HTML_EXT '>' dest'/commsos'HTML_EXT
28'./manext' QUERY '>' dest'/query.man'
29'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'QUERY'    dest'/query.man' dest'/index'HTML_EXT    '>' dest'/query'HTML_EXT
30'./manext' GLOSSARY '>' dest'/glossary.man'
31'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'GLOSSARY' dest'/glossary.man' dest'/index'HTML_EXT '>' dest'/glossary'HTML_EXT
32'./manext' APPENDIX1 '>' dest'/app1.man'
33'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'APPENDIX1' dest'/app1.man' dest'/index'HTML_EXT '>' dest'/app1'HTML_EXT
34'./manext' APPENDIX2 '>' dest'/app2.man'
35'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'APPENDIX2' dest'/app2.man' dest'/index'HTML_EXT '>' dest'/app2'HTML_EXT
36'./manext' APPENDIX3 '>' dest'/app3.man'
37'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'APPENDIX3' dest'/app3.man' dest'/index'HTML_EXT '>' dest'/app3'HTML_EXT
38'./manext' APPENDIX4 '>' dest'/app4.man'
39'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'APPENDIX4' dest'/app4.man' dest'/index'HTML_EXT '>' dest'/app4'HTML_EXT
40'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'APPENDIX5' docdir'/app5.htm' dest'/index'HTML_EXT '>' dest'/app5'HTML_EXT
41'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'APPENDIX6' docdir'/app6.htm' dest'/index'HTML_EXT '>' dest'/app6'HTML_EXT
42'./manext' APPENDIX7 '>' dest'/app7.man'
43'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'APPENDIX7' dest'/app7.man' dest'/index'HTML_EXT '>' dest'/app7'HTML_EXT
44'cp' srcdir'/HISTORY' dest'/history.man'
45'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'HISTORY' dest'/history.man' dest'/index'HTML_EXT '>' dest'/history'HTML_EXT
46'cp' srcdir'/THE_Help.txt' dest'/quickref.man'
47'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'QUICKREF' dest'/quickref.man' dest'/index'HTML_EXT '>' dest'/quickref'HTML_EXT
48'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'FDL' docdir'/fdl.htm' dest'/index'HTML_EXT '>' dest'/fdl'HTML_EXT
49'rexx' srcdir'/man2html.rex' HTML_EXT VER_DOT 'TOCEND >>' dest'/index'HTML_EXT
50Return 0
51