Home | History | Annotate | Download | only in stdlib
      1 #
      2 # Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
      3 #
      4 # SPDX-License-Identifier: BSD-3-Clause
      5 #
      6 
      7 STDLIB_SRCS	:=	$(addprefix lib/stdlib/,	\
      8 			abort.c				\
      9 			assert.c			\
     10 			exit.c				\
     11 			mem.c				\
     12 			printf.c			\
     13 			putchar.c			\
     14 			puts.c				\
     15 			sscanf.c			\
     16 			strchr.c			\
     17 			strcmp.c			\
     18 			strlen.c			\
     19 			strncmp.c			\
     20 			strnlen.c			\
     21 			subr_prf.c			\
     22 			timingsafe_bcmp.c)
     23 
     24 INCLUDES	+=	-Iinclude/lib/stdlib		\
     25 			-Iinclude/lib/stdlib/sys
     26