Subversion Repositories Projects

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

@echo off
:: /****************************************************************************
::  *   Copyright (C) 2011 by Claas Anders "CaScAdE" Rathje                    *
::  *   admiralcascade@gmail.com                                               *
::  *   Project-URL: http://www.mylifesucks.de/oss/c-epilepsy/                 *
::  *                                                                          *
::  *   This program is free software; you can redistribute it and/or modify   *
::  *   it under the terms of the GNU General Public License as published by   *
::  *   the Free Software Foundation; either version 2 of the License.         *
::  *                                                                          *
::  *   This program is distributed in the hope that it will be useful,        *
::  *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
::  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
::  *   GNU General Public License for more details.                           *
::  *                                                                          *
::  *   You should have received a copy of the GNU General Public License      *
::  *   along with this program; if not, write to the                          *
::  *   Free Software Foundation, Inc.,                                        *
::  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
::  ****************************************************************************/

set DATE=20110830-1050
::set DATE=DEVEL

:: date /T


:: clean up first

del *.hex

FOR %%C IN (atmega644 atmega644p) DO (
        FOR %%H IN (EPI10AQ41 EPI10 EPI11) DO (
                echo Building Hex file for: %%C on %%H
                set CFLAGS=-DBUILDDATE=\"%DATE%\" -DHWVERSION=%%H
                set MCU=%%C            
                make clean
                make
                move C-Epilepsy.hex C-Epilepsy-%DATE%-%%C-%%H.hex
        )
)

:: clean up

make clean

:: show stats  f.e. http://etree.org/cgi-bin/counter.cgi/software/md5sum.exe

md5sum *.hex
::dir /A *.hex

:: pack all stuff

mkdir C-Epilepsy-%DATE%
move *.hex C-Epilepsy-%DATE%
copy ..\CHANGE.LOG C-Epilepsy-%DATE%
copy ..\LICENSE.TXT C-Epilepsy-%DATE%
copy ..\README.TXT C-Epilepsy-%DATE%
:: 7zip command line version from http://www.7-zip.org
7za a -tzip  C-Epilepsy-%DATE%.zip C-Epilepsy-%DATE%

rmdir /S /Q C-Epilepsy-%DATE%

dir /A C-Epilepsy-%DATE%.zip

::echo "building based on revision $REVISION is now DONE..."