Release 980927
[wine] / programs / control / lccmake.bat
1 @ECHO OFF\r
2 rem\r
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
6 rem \r
7 \r
8 set LCCDIR=C:\LCC\r
9 \r
10 rem   ---------------------------------------------------\r
11 rem    it's safe not to change anything behind this line\r
12 rem   ---------------------------------------------------\r
13 \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
18 \r
19 :EXIT\r