blob: da47601072c4092c230dbe2145e864df6f6f65e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@rem $LynxId: makew32.bat,v 1.6 2007/06/28 21:07:24 tom Exp $
@echo off
if "%1"=="" goto normal
make -l -f makefile.bcb %1
goto done
:normal
make -l -f makefile.bcb
call makehdrs
:done
|