mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-10-31 10:40:34 +00:00 
			
		
		
		
	 9d07b84580
			
		
	
	
		9d07b84580
		
	
	
	
	
		
			
			New files libprep.bat and srcprep.bat. These scripts make it easier to set up the source tree and the target system's library directory by automating the required file copy operations. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Daryl McDaniel <edk2-lists@mc2research.org> Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19458 6f19259b-4bc3-4df7-8a09-765794883524
		
			
				
	
	
		
			21 lines
		
	
	
		
			340 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			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
 |