Files
rosaled/firmware/SDCC/_WIN_clean.bat
2025-06-28 16:14:14 +02:00

16 lines
282 B
Batchfile

REM just for output
echo off
cls
REM target device (for supported devices see stm8l15x.h)
set DEVICE=STM8L15X_MD
REM set make tool (if not in PATH, set complete path)
set MAKE=mingw32-make
REM use makefile to delete sdcc output
%MAKE% -f Makefile DEVICE=%DEVICE% clean
echo on