Skip to content

Commit

Permalink
added lib bat file
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-gilbert committed May 19, 2016
1 parent a20b96c commit ce76254
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ldscript/lib-post-process.bat
@@ -0,0 +1,17 @@
@echo off

set TOOLSPATH=%1
set HOST=%2
set PROJ=%3
set NAME=%4
set ARCH=%5
set FLOAT=%6
set FOLDER=%7
set TYPE=%8
set LIB=lib%NAME%%TYPE%
echo "Installing include files in%TOOLSPATH%\%HOST%\include\%FOLDER%"
mkdir %TOOLSPATH%\%HOST%\include\%FOLDER%
xcopy /S /Y ..\include\* %TOOLSPATH%\%HOST%\include\%FOLDER%
echo "Installing library file: %LIB%.a in %TOOLSPATH%\%HOST%\lib\%ARCH%\%FLOAT%"
copy /y %LIB%.a %TOOLSPATH%\%HOST%\lib\%ARCH%\%FLOAT%
exit /b 1

0 comments on commit ce76254

Please sign in to comment.