forked from auracaster/openocd
6a3abda0b4
These helpers are needed by the updated RISC-V target files. Change-Id: I5aa9f4e58eb75e1c7a1e8e0e3961725e2a915ebb Signed-off-by: Bernhard Rosenkränzer <bero@baylibre.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8895 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
47 lines
832 B
Makefile
47 lines
832 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
noinst_LTLIBRARIES += %D%/libhelper.la
|
|
|
|
%C%_libhelper_la_SOURCES = \
|
|
%D%/base64.c \
|
|
%D%/binarybuffer.c \
|
|
%D%/options.c \
|
|
%D%/time_support_common.c \
|
|
%D%/configuration.c \
|
|
%D%/log.c \
|
|
%D%/command.c \
|
|
%D%/crc32.c \
|
|
%D%/time_support.c \
|
|
%D%/replacements.c \
|
|
%D%/fileio.c \
|
|
%D%/util.c \
|
|
%D%/jep106.c \
|
|
%D%/jim-nvp.c \
|
|
%D%/nvp.c \
|
|
%D%/align.h \
|
|
%D%/base64.h \
|
|
%D%/binarybuffer.h \
|
|
%D%/bitfield.h \
|
|
%D%/bits.h \
|
|
%D%/configuration.h \
|
|
%D%/list.h \
|
|
%D%/util.h \
|
|
%D%/types.h \
|
|
%D%/log.h \
|
|
%D%/command.h \
|
|
%D%/crc32.h \
|
|
%D%/time_support.h \
|
|
%D%/replacements.h \
|
|
%D%/fileio.h \
|
|
%D%/system.h \
|
|
%D%/jep106.h \
|
|
%D%/jep106.inc \
|
|
%D%/jim-nvp.h \
|
|
%D%/nvp.h \
|
|
%D%/compiler.h
|
|
|
|
STARTUP_TCL_SRCS += %D%/startup.tcl
|
|
EXTRA_DIST += \
|
|
%D%/bin2char.sh \
|
|
%D%/update_jep106.pl
|