# Makefile für Testboard 

########### change these lines according to your project ##################

#put the name of the target mcu here (at90s8515, at90s8535, attiny22, atmega603 etc.)
    MCU = at90s8535

#put the name of the target file here (without extension)
	TRG	= lcd_und_taster

#put your C sourcefiles here 
	SRC	= lcd_und_taster.c

#put additional assembler source file here
	ASRC    =

#additional libraries and object files to link
	LIB	=

#additional includes to compile
	INC	= 

#assembler flags
	ASFLAGS = -Wa, -gstabs

#compiler flags
	CPFLAGS	= -g  -Os -Wall -Wstrict-prototypes -Wa,-ahlms=$(<:.c=.lst)

#linker flags
	LDFLAGS = -Wl,-Map=$(TRG).map,--cref

	
########### you should not need to change the following line #############
include c:/avrgcc/avrfreaks/avr_make

###### dependencies, add any dependencies you need here ###################
$(TRG).o : lcd_und_taster.c
