aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/km/build/wdk7.1/clean_drivers.bat
blob: 8442c909ff310c5a404cc6f44219c9d70568a41e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
@rem This file is part of the "Windows 7 drivers" project.
@rem For details, see https://github.com/egor-tensin/windows7-drivers.
@rem Distributed under the MIT License.

@setlocal enabledelayedexpansion
@echo off

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