RE: [offtopic??] A Watcom Question
- Posted by kennethroger at prodigy.net Mar 31, 2001
- 492 views
Mike, These, e.g., can go in your autoexec.bat-- set WATCOM=c:\watcom set WCL386=-fp5 -5r -i#.;c:\watcom\h; -l#causeway And these in wlsystem.lnk-- system begin causeway option osname='CauseWay' option CASEEXACT libpath %WATCOM%\lib386 libpath %WATCOM%\lib386\dos op stub=cwstub.exe end (Put Causeway's stub in the c:\watcom\bin? directory.) Compile and link with wcl386.exe, or-- wcc386 -i=.;%WATCOM%\h -fp5 -5r file.c wlink system causeway file file.obj library libfile.lib (I'm over-describing for newbies that may be looking.) --Ken