1@echo off 2REM Prepare the Python sources for EDK II by copying 3REM the .h files from the PyMod tree into the Python tree. 4REM Directory correspondence is maintained. 5 6FOR %%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 12echo. 13echo DONE! 14