remove ~files
[aversive.git] / modules / comm / uart / Makefile
1 TARGET = uart
2
3 # List C source files here. (C dependencies are automatically generated.)
4 ifeq ($(HOST),avr)
5 SRC  = uart_setconf.c uart_dev_io.c
6 SRC += uart_getconf.c uart_events.c
7 SRC += uart.c
8
9 SRC += uart_send.c uart_send_nowait.c
10 SRC += uart_recv.c uart_recv_nowait.c
11
12 ifeq ($(CONFIG_MODULE_UART_9BITS),y)
13 SRC += uart_send9.c uart_send9_nowait.c
14 SRC += uart_recv9.c uart_recv9_nowait.c
15 endif
16
17 else # is it ok ??
18 SRC = uart_host.c
19 endif
20
21 include $(AVERSIVE_DIR)/mk/aversive_module.mk