summaryrefslogtreecommitdiff
path: root/n/line-follower/src/Makefile
blob: dbfe3bcc184f7a67330a71a207259f10ac801309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
PROGS = linefol 
linefol_OBJECTS = main.o rs232.o proto.o
DOC =
EXTRACTDOC =
MODULES = n/avr/rs232 n/avr/proto n/avr/utils
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
MCU_TARGET = atmega128
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

DEFS =
LDLIBS =

include Makefile.avr

linefol.elf: $(linefol_OBJECTS)

test_pwm.elf: $(test_pwm_OBJECTS)

test_dsp.elf: $(test_dsp_OBJECTS)