aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/build_drivers.bat
blob: 2229f7d78a221a308974fab2955cfb123bcd19a7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                                              







                                                                         
@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
@rem This file is licensed under the terms of the MIT License.
@rem See LICENSE.txt for details.

@setlocal enabledelayedexpansion
@echo off

for /f "delims=" %%i in ('dir /s sources /b') do (
  set driver_src_root=%%~dpi
  echo.
  call build_driver.bat "!driver_src_root:~0,-1!" || exit /b !errorlevel!
)