compile.bat 223 B

123456789101112
  1. @echo off
  2. set "PATH=%PATH%;%PROGRAMFILES%\Atmel\AVR Tools\AVR Toolchain\bin"
  3. echo Cleaning source tree...
  4. make.exe distclean V=1 BINEXT=.exe NODEPS=1
  5. echo Compiling...
  6. make.exe V=1 BINEXT=.exe NODEPS=1
  7. pause