File: mc.bat

package info (click to toggle)
ucl 1.03%2Brepack-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,308 kB
  • ctags: 10,088
  • sloc: sh: 11,733; asm: 10,461; ansic: 5,067; makefile: 112
file content (34 lines) | stat: -rw-r--r-- 704 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo // Copyright (C) 1996-2004 Markus F.X.J. Oberhumer
@echo //
@echo //   DOS 16-bit
@echo //   Microsoft C/C++
@echo //
@call b\prepare.bat
@if "%BECHO%"=="n" echo off


set CC=cl -nologo -AL
set CF=-O -Gf -W3 %CFI%
set LF=/map

%CC% %CF% -c src\*.c
@if errorlevel 1 goto error
lib /nologo %BLIB% @b\dos16\bc.rsp;
@if errorlevel 1 goto error

%CC% %CF% -c examples\simple.c
@if errorlevel 1 goto error
link %LF% simple.obj,,,%BLIB%;
@if errorlevel 1 goto error
%CC% %CF% -c examples\uclpack.c
@if errorlevel 1 goto error
link %LF% uclpack.obj,,,%BLIB%;
@if errorlevel 1 goto error


@call b\done.bat
@goto end
:error
@echo ERROR during build!
:end
@call b\unset.bat