1# SPDX-License-Identifier: GPL-2.0-or-later 2# 3# This is not a complete Makefile of itself. 4# Instead, it is designed to be easily embeddable 5# into other systems of Makefiles. 6# 7 8CONVERT_SRCS = \ 9 srcpos.c \ 10 util.c 11 12CONVERT_GEN_SRCS = convert-dtsv0-lexer.lex.c 13 14CONVERT_OBJS = $(CONVERT_SRCS:%.c=%.o) $(CONVERT_GEN_SRCS:%.c=%.o) 15