1# SPDX-License-Identifier: GPL-2.0-or-later
2#
3# This is not a complete Makefile of itself.  Instead, it is designed to
4# be easily embeddable into other systems of Makefiles.
5#
6
7FDTDUMP_SRCS = \
8	fdtdump.c \
9	util.c
10
11FDTDUMP_OBJS = $(FDTDUMP_SRCS:%.c=%.o)
12
13
14FDTGET_SRCS = \
15	fdtget.c \
16	util.c
17
18FDTGET_OBJS = $(FDTGET_SRCS:%.c=%.o)
19
20
21FDTPUT_SRCS = \
22	fdtput.c \
23	util.c
24
25FDTPUT_OBJS = $(FDTPUT_SRCS:%.c=%.o)
26
27FDTOVERLAY_SRCS = \
28	fdtoverlay.c \
29	util.c
30
31FDTOVERLAY_OBJS = $(FDTOVERLAY_SRCS:%.c=%.o)
32