2015-08-07 20:41:13 +00:00
|
|
|
# Component makefile for extras/stdin_uart_interrupt
|
|
|
|
#
|
|
|
|
# See examples/terminal for usage. Well, actually there is no need to see it
|
|
|
|
# for 'usage' as this module is a drop-in replacement for the original polled
|
|
|
|
# version of reading from the UART.
|
|
|
|
|
2016-11-01 15:14:34 +00:00
|
|
|
INC_DIRS += $(stdin_uart_interrupt_ROOT)
|
2015-08-07 20:41:13 +00:00
|
|
|
|
|
|
|
# args for passing into compile rule generation
|
2016-11-01 15:14:34 +00:00
|
|
|
stdin_uart_interrupt_SRC_DIR = $(stdin_uart_interrupt_ROOT)
|
2015-08-07 20:41:13 +00:00
|
|
|
|
2016-11-01 15:14:34 +00:00
|
|
|
INCLUDE_SRC_IN_AR = 0
|
|
|
|
EXTRA_LDFLAGS = -Wl,--whole-archive $(stdin_uart_interrupt_AR) -Wl,--no-whole-archive
|
|
|
|
|
|
|
|
$(eval $(call component_compile_rules,stdin_uart_interrupt))
|