File: lccmake.bat

package info (click to toggle)
wine 0.0.20000109-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 22,652 kB
  • ctags: 59,973
  • sloc: ansic: 342,054; perl: 3,697; yacc: 3,059; tcl: 2,647; makefile: 2,466; lex: 1,494; sh: 394
file content (19 lines) | stat: -rwxr-xr-x 665 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@ECHO OFF
rem
rem   this is a quick and dirty batch file to recompile control.exe
rem   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:\LCC

rem   ---------------------------------------------------
rem    it's safe not to change anything behind this line
rem   ---------------------------------------------------

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.lib
if exist control.obj del control.obj

:EXIT