summaryrefslogtreecommitdiff
path: root/n/avr/adc/Makefile
blob: 96c608fabe4836450389b158265170d5602844b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PROGS = test_adc
test_adc_OBJECTS = test_adc.o adc.o rs232.o proto.o twi_slave.o 
DOC =
EXTRACTDOC =
MODULES = n/avr/proto n/avr/rs232 n/avr/utils n/avr/twi-slave
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
MCU_TARGET = atmega8535
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

DEFS =
LDLIBS =

EXTRA_TARGETS =
EXTRA_CLEAN_FILES =

include Makefile.avr

test_adc.elf: $(test_adc_OBJECTS)