Files
Odin/misc/lib_maker_clang.bat
2017-03-03 11:20:22 +00:00

12 lines
222 B
Batchfile

@echo off
setlocal EnableDelayedExpansion
set file_input=%1
set name=%1
FOR %%f IN (name) do (
FOR %%g in (!%%f!) do set "%%f=%%~ng"
)
call clang -O2 -c %file_input% -o %name%.o ^
&& call ar %name%.o -rcs %name%.lib