You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
426 B
24 lines
426 B
@echo off
|
|
|
|
REM
|
|
REM this builds the setbldno app on the fly, works for any procressor
|
|
REM
|
|
cd %AP_ROOT%\setup\setbldno
|
|
nmake
|
|
|
|
REM
|
|
REM Need to put it in a batch file so it can be executed
|
|
REM
|
|
if not exist %AP_ROOT%\setbldno.bat goto createbldno
|
|
del %AP_ROOT%\setbldno.bat
|
|
|
|
:createbldno
|
|
setbldno > %AP_ROOT%\setbldno.bat
|
|
cd %AP_ROOT%
|
|
|
|
REM
|
|
REM Set the environment variable
|
|
REM
|
|
call setbldno.bat
|
|
|
|
cd %AP_ROOT%
|