summaryrefslogtreecommitdiff
path: root/n/avr/proto/Makefile
blob: a056496734dbd0d35313920a6332868fc3aa60f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
PROGS = test_proto
test_proto_OBJECTS = test_proto.o proto.o rs232.o
DOC = proto.html
EXTRACTDOC = avrconfig.h proto.h proto_inline.c
MODULES = n/avr/rs232
CONFIGFILE = testconfig.h
# atmega8, atmega8535, atmega128...
MCU_TARGET = atmega8
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

DEFS =
LIBS =

include Makefile.avr

test_proto.elf: $(test_proto_OBJECTS)