Files
wxWidgets/build/script/word_macro.txt
Bryan Petty fadf3261aa This commit was manufactured by cvs2svn to create tag
'WX_MAC_2_8_BEFORE_COCOA_MIXIN'.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/tags/WX_MAC_2_8_BEFORE_COCOA_MIXIN@46470 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2007-06-14 23:07:20 +00:00

19 lines
584 B
Plaintext

' This is saved as word macros; opens a pdf and writes out a ps file using
' laserjet ps driver
' Note that the output dir and hardcoded printer must exist
Sub wx28_ps()
swxWIN = Environ("WXWIN")
do_ps swxWIN & "\docs\pdf\", "wx"
do_ps swxWIN & "\contrib\docs\latex\svg", "svg"
do_ps swxWIN & "\contrib\docs\latex\ogl", "ogl"
do_ps swxWIN & "\contrib\docs\latex\mmedia", "mmedia"
do_ps swxWIN & "\contrib\docs\latex\gizmos", "gizmos"
do_ps swxWIN & "\contrib\docs\latex\fl", "fl"
do_ps swxWIN & "\utils\tex2rtf\docs", "tex2rtf"
bye_bye
End Sub