Skip to content

Commit

Permalink
add Windows build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
c--- committed Mar 31, 2013
1 parent 04ce8e8 commit 5497120
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Binary file added simonk_tgy_2012-09-30/avra.exe
Binary file not shown.
21 changes: 21 additions & 0 deletions simonk_tgy_2012-09-30/make.bat
@@ -0,0 +1,21 @@
REM build script by Chris Osgood 2013-03-31 http://luadev.com/rc/

@SET AVRA=avra -fI -o %%~nF.inc.hex -D %%~nF_esc -e %%~nF.eeprom -d %%~nF.obj %%~nF.asm

@FOR /F "tokens=1,2,*" %%i in (Makefile) DO (
@IF "%%i"=="ALL_TARGETS" (
@FOR %%F IN (%%k) DO (
@IF NOT EXIST %%~nF.asm (
COPY tgy.asm %%~nF.asm
%AVRA%
DEL %%~nF.asm
) else (
%AVRA%
)
)

goto exit
)
)

:exit

0 comments on commit 5497120

Please sign in to comment.