# Makefile für den 16-Bit Timer/Counter
# (c) Christian Schifferle Dezember 2002


	MCU	= at90s2313
	TRG	= Timer1
	SRC	= $(TRG).c UartPrintF.c
	ASFLAGS	= -Wa, -gstabs
	CPFLAGS	= -g  -Os -Wall -Wstrict-prototypes -Wa,-ahlms=$(<:.c=.lst)
	LDFLAGS = -Wl,-Map=$(TRG).map,--cref	

include $(AVR)/avrfreaks/avr_make

$(TRG).o: $(TRG).c
UartPrintF.o: UartPrintF.c