20 lines
631 B
Plaintext
20 lines
631 B
Plaintext
|
echo off
|
||
|
echo.
|
||
|
echo Before executing this command file, make sure that Logitech Modula-2
|
||
|
echo has been properly installed.
|
||
|
echo.
|
||
|
echo This batch file will compile, link, and execute the coroutines
|
||
|
echo example (refer to the manual for more information on coroutines).
|
||
|
echo To end the execution of the example program, press any key.
|
||
|
echo.
|
||
|
echo (Note: if you have purchased only the Compiler Pack, you must
|
||
|
echo change the "m2l" command in this file to the corresponding "link"
|
||
|
echo command for DOS.)
|
||
|
echo.
|
||
|
pause
|
||
|
echo on
|
||
|
m2c corou
|
||
|
m2l corou/o/p
|
||
|
rem link corou,,,..\..\m2lib\lib\m2rts ..\..\m2lib\lib\m2lib;
|
||
|
corou
|