]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.10/srcprep.bat
AppPkg/.../Python-2.7.10: New helper scripts
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / srcprep.bat
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!