16 lines
282 B
Batchfile
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
|
|
|