mirror of
https://github.com/Dasharo/edk2.git
synced 2026-06-13 10:16:24 -07:00
14 lines
336 B
Batchfile
14 lines
336 B
Batchfile
|
|
@echo off
|
||
|
|
REM Prepare the Python sources for EDK II by copying
|
||
|
|
REM the .h files from the PyMod tree into the Python tree.
|
||
|
|
REM Directory correspondence is maintained.
|
||
|
|
|
||
|
|
FOR %%d IN (Include Modules Objects Python) DO (
|
||
|
|
echo.
|
||
|
|
echo Processing the %%d directory.
|
||
|
|
XCOPY /S /Y /Q PyMod-2.7.10\%%d\*.h %%d
|
||
|
|
)
|
||
|
|
|
||
|
|
echo.
|
||
|
|
echo DONE!
|