summaryrefslogtreecommitdiff
path: root/n/avr/modules/uart/Makefile
blob: 4546be65569b7d4f8e4cc366ff3c9f73cdb49ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BASE = ../..
PROGS = test_uart
test_uart_SOURCES = test_uart.c
DOC = uart.html
EXTRACTDOC = uart.h avrconfig.h
MODULES = uart
CONFIGFILE = test_avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega8
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

DEFS =
LIBS =

include $(BASE)/make/Makefile.gen