Home | History | Annotate | Download | only in Python-2.7.10
      1 @echo off
      2 REM Prepare the Python sources for EDK II by copying
      3 REM the .h files from the PyMod tree into the Python tree.
      4 REM Directory correspondence is maintained.
      5 
      6 FOR %%d IN (Include Modules Objects Python) DO (
      7   echo.
      8   echo Processing the %%d directory.
      9   XCOPY /S /Y /Q PyMod-2.7.10\%%d\*.h %%d
     10 )
     11 
     12 echo.
     13 echo DONE!
     14