summaryrefslogtreecommitdiff
path: root/n/avr/howto/Makefile
blob: 1f09fb3c10a7247921cb785fa36c615213b9ef2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PROGS = example
example_OBJECTS = example.o
DOC = howto-avr.html
EXTRACTDOC =
MODULES =
CONFIGFILE =
# atmega8, atmega8535, atmega128...
MCU_TARGET = atmega8
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

DEFS =
LDLIBS =

include Makefile.avr

example.elf: $(example_OBJECTS)