avr-crypto-lib/mkfiles/001_cli_std.mk

21 lines
537 B
Makefile
Raw Normal View History

2009-07-29 09:49:57 +00:00
CLI_STD = cli-stub.o cli-basics.o cli-core.o cli-hexdump.o debug.o hexdigit_tab.o \
2015-02-02 21:20:18 +00:00
dbz_strings.o string-extras-asm.o $(UART_OBJ) \
2012-03-28 02:25:11 +00:00
main-test-common.o
2012-09-18 04:07:04 +00:00
2015-02-02 21:20:18 +00:00
UART_I_OBJ = uart_i-asm.o circularbytebuffer-asm.o
UART_NI_OBJ = uart_ni-asm.o
ifeq ($(UART),NI)
UART_OBJ = $(UART_NI_OBJ)
DEFS += -DUART_NI=1
else
UART_OBJ = $(UART_I_OBJ)
DEFS += -DUART_NI=0
endif
2012-09-18 04:07:04 +00:00
#CLI_STD = cli.o debug.o hexdigit_tab.o \
# dbz_strings.o string-extras-asm.o uart_i-asm.o circularbytebuffer-asm.o \
# main-test-common.o