# Copyright (C) 2005 Thor Andreassen <ta@imada.sdu.dk> 
#                    Anders Dubgaard <anders@dubgaard.net>
#
# 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, or
# (at your option) any later version.
#
# 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

INTERFACE = stk200 
PROGPORT  = /dev/parport0

CC      = avr-gcc

OBJCOPY = avr-objcopy

OBJS    = $(C_FILES:.c=.o)
ASMS	= $(C_FILES:.c=.s)

AVRDUDE = /opt/bin/avrdude
AVRDUDEVERBOSITY = -q
AVRDUDEOPTS = -p $(MCU) -c $(INTERFACE) -P $(PROGPORT) $(AVRDUDEVERBOSITY)

MEGATOOLSDIR     ?= ./megatools
MEGATOOLSINCLUDE ?= $(MEGATOOLSDIR)/megatools.h
MEGATOOLSLIB     ?= megatools

# megatools:
# $ CSV_RSH=ssh cvs -d meta.adsl.dk:/home/cvs co -d megatools megatools

