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 8 CONVERT_SRCS = \ 9 srcpos.c \ 10 util.c 11 12 CONVERT_GEN_SRCS = convert-dtsv0-lexer.lex.c 13 14 CONVERT_OBJS = $(CONVERT_SRCS:%.c=%.o) $(CONVERT_GEN_SRCS:%.c=%.o) 15