Source code of Windows XP (NT5)
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.

14 lines
287 B

  1. @echo off
  2. if %_BuildArch% == %PROCESSOR_ARCHITECTURE% goto buildit
  3. echo PROCESSOR_ARCHITECTURE and _BuildArch must match
  4. goto end
  5. :buildit
  6. set __objpath=%_BuildArch%
  7. if "%_BuildArch%" == "x86" set __objpath=i386
  8. cd inf
  9. build -cZ
  10. obj\%__objpath%\makeinf
  11. cd ..
  12. :end
  13. set __objpath=
  14. echo on