aboutsummaryrefslogtreecommitdiff
path: root/misc/lib_maker_clang.bat
blob: 14899f6efe23219f14ea01c1c26cf9634cb1cb94 (plain)
1
2
3
4
5
6
7
8
9
10
11
@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