3 rem this is a quick and dirty batch file to recompile control.exe
\r
4 rem in a native windows environment using LCC. You may want to edit
\r
5 rem the following line, which should point to your LCC base directory:
\r
10 rem ---------------------------------------------------
\r
11 rem it's safe not to change anything behind this line
\r
12 rem ---------------------------------------------------
\r
14 if exist control.obj del control.obj
\r
15 %LCCDIR%\bin\lcc.exe -g2 -I%LCCDIR%\include\ -DWIN32 control.c
\r
16 %LCCDIR%\bin\lcclnk.exe -o control2.exe control.obj %LCCDIR%\lib\shell32.lib
\r
17 if exist control.obj del control.obj
\r