Kannst Du mir sagen wie der aussehen muss?

Edit:
Folgendes steht in meinem Makefile:
Code:
# Display size of file.
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
ELFSIZE = $(SIZE) -A $(TARGET).elf
AVRMEM = avr-mem.sh $(TARGET).elf $(MCU)

sizebefore:
	@if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \
	$(AVRMEM) 2>/dev/null; echo; fi

sizeafter:
	@if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); \
	$(AVRMEM) 2>/dev/null; echo; fi
Edit 2:

Ich kann allerdings die Datei "avr-mem.sh" nicht im Installationsverzeichnis von WinAVR finden. Wenn ich das richtig sehe, dann wird die dafür benötigt, oder?