mirror of https://github.com/lianthony/NT4.0
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.
18 lines
390 B
18 lines
390 B
@echo off
|
|
if "%PROCESSOR%" == "INTEL_486" goto intel
|
|
if "%PROCESSOR%" == "MIPS_R4000" goto mips
|
|
echo UNKNOWN PROCESSOR
|
|
goto end
|
|
|
|
:mips
|
|
copy ntdrvr\src\obj\mips\*.exe lib\mips
|
|
copy ntdlgs\app\obj\mips\*.exe lib\mips
|
|
copy ntsnap\obj\mips\*.exe lib\mips
|
|
goto end
|
|
|
|
:intel
|
|
copy ntdrvr\src\obj\i386\*.exe lib\i386
|
|
copy ntdlgs\app\obj\i386\*.exe lib\i386
|
|
copy ntsnap\obj\i386\*.exe lib\i386
|
|
|
|
:end
|