@ECHO OFFremrem this is a quick and dirty batch file to recompile control.exerem in a native windows environment using LCC. You may want to edit rem the following line, which should point to your LCC base directory:rem set LCCDIR=C:\LCCrem ---------------------------------------------------rem it's safe not to change anything behind this linerem ---------------------------------------------------if exist control.obj del control.obj%LCCDIR%\bin\lcc.exe -g2 -I%LCCDIR%\include\ -DWIN32 control.c%LCCDIR%\bin\lcclnk.exe -o control2.exe control.obj %LCCDIR%\lib\shell32.libif exist control.obj del control.obj:EXIT