summaryrefslogtreecommitdiff
path: root/n/avr/twi-slave/Makefile
blob: 82de36724b7a8dcdaf5eea20003a1aa2311855dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PROGS = test_twi_slave
test_twi_slave_OBJECTS = test_twi_slave.o twi_slave.o rs232.o
DOC = twi_slave.html
EXTRACTDOC = avrconfig.h twi_slave.h 
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_twi_slave.elf: $(test_twi_slave_OBJECTS)