audk/AppPkg/Applications/Python/Python-2.7.10/libprep.bat

21 lines
340 B
Batchfile

@echo off
REM libprep.bat
REM
REM SYNTAX: libprep <path-to-new-lib-dir>
REM
SETLOCAL
set dest=%1
echo Copying files to %dest%.
echo Existing files will be overwritten.
echo.
PAUSE
REM Copy Distro then PyMod files to the destination
XCOPY Lib %dest% /S /I /Y
XCOPY PyMod-2.7.10\Lib %dest% /S /I /Y
echo DONE
ENDLOCAL