1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
XCOMM troffcvt documentation Makefile
all::
documents-ps:: troffcvt.ps actions.ps output.ps \
bugs.ps tc2rtf.ps tc2html.ps tblcvt.ps groff.ps frontend.ps
documents-html:: troffcvt.html actions.html output.html \
bugs.html tc2rtf.html tc2html.html tblcvt.html groff.html frontend.html
documents-text:: documents-txt
documents-txt:: troffcvt.txt actions.txt output.txt \
bugs.txt tc2rtf.txt tc2html.txt tblcvt.txt groff.txt frontend.txt
documents-rtf:: troffcvt.rtf actions.rtf output.rtf \
bugs.rtf tc2rtf.rtf tc2html.rtf tblcvt.rtf groff.rtf frontend.rtf
TroffMsToPostScript(troffcvt.ps,tmac.wrprc troffcvt.ms,NullArg,NullArg)
TroffMsToHTML(troffcvt.html,troffcvt.ms,tmac.wrprc -a tc.wrprc-html,NullArg,NullArg)
TroffMsToText(troffcvt.txt,troffcvt.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToRTF(troffcvt.rtf,troffcvt.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToPostScript(actions.ps,tmac.wrprc actions.ms,NullArg,NullArg)
TroffMsToHTML(actions.html,actions.ms,tmac.wrprc -a tc.wrprc-html,NullArg,NullArg)
TroffMsToText(actions.txt,actions.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToRTF(actions.rtf,actions.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToPostScript(output.ps,tmac.wrprc output.ms,|$(TBL),NullArg)
TroffMsToHTML(output.html,output.ms,tmac.wrprc -a tc.wrprc-html,|$(TBLCVT),NullArg)
TroffMsToText(output.txt,output.ms,tmac.wrprc,|$(TBLCVT),NullArg)
TroffMsToRTF(output.rtf,tmac.wrprc output.ms,NullArg,|$(TBLCVT),NullArg)
TroffMsToPostScript(bugs.ps,tmac.wrprc bugs.ms,NullArg,NullArg)
TroffMsToHTML(bugs.html,bugs.ms,tmac.wrprc -a tc.wrprc-html,NullArg,NullArg)
TroffMsToText(bugs.txt,bugs.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToRTF(bugs.rtf,bugs.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToPostScript(tc2rtf.ps,tmac.wrprc tc2rtf.ms,NullArg,NullArg)
TroffMsToHTML(tc2rtf.html,tc2rtf.ms,tmac.wrprc -a tc.wrprc-html,NullArg,NullArg)
TroffMsToText(tc2rtf.txt,tc2rtf.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToRTF(tc2rtf.rtf,tc2rtf.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToPostScript(tc2html.ps,tmac.wrprc tc2html.ms,NullArg,NullArg)
TroffMsToHTML(tc2html.html,tc2html.ms,tmac.wrprc -a tc.wrprc-html,NullArg,NullArg)
TroffMsToText(tc2html.txt,tc2html.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToRTF(tc2html.rtf,tc2html.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToPostScript(tblcvt.ps,tmac.wrprc tblcvt.ms,|$(TBL),NullArg)
TroffMsToHTML(tblcvt.html,tblcvt.ms,tmac.wrprc -a tc.wrprc-html,|$(TBLCVT),NullArg)
TroffMsToText(tblcvt.txt,tblcvt.ms,tmac.wrprc,|$(TBLCVT),NullArg)
TroffMsToRTF(tblcvt.rtf,tblcvt.ms,tmac.wrprc,|$(TBLCVT),NullArg)
TroffMsToPostScript(groff.ps,tmac.wrprc groff.ms,NullArg,NullArg)
TroffMsToHTML(groff.html,groff.ms,tmac.wrprc -a tc.wrprc-html,NullArg,NullArg)
TroffMsToText(groff.txt,groff.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToRTF(groff.rtf,groff.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToPostScript(frontend.ps,tmac.wrprc frontend.ms,NullArg,NullArg)
TroffMsToHTML(frontend.html,frontend.ms,tmac.wrprc -a tc.wrprc-html,NullArg,NullArg)
TroffMsToText(frontend.txt,frontend.ms,tmac.wrprc,NullArg,NullArg)
TroffMsToRTF(frontend.rtf,frontend.ms,tmac.wrprc,NullArg,NullArg)
|