blob: 9436b34d791f0cc2bb799dd715911329c2fca69d [file] [log] [blame]
Rob Herring4097bbf2019-06-20 15:19:43 -06001# SPDX-License-Identifier: GPL-2.0-or-later
Simon Glass9ebd9b42011-09-21 13:32:44 -07002#
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
Mike Frysinger8f459c52011-10-25 17:29:24 -04007FDTDUMP_SRCS = \
8 fdtdump.c \
Simon Glass9ebd9b42011-09-21 13:32:44 -07009 util.c
10
Mike Frysinger8f459c52011-10-25 17:29:24 -040011FDTDUMP_OBJS = $(FDTDUMP_SRCS:%.c=%.o)
Simon Glass68d057f2012-01-21 10:14:47 -080012
13
14FDTGET_SRCS = \
15 fdtget.c \
16 util.c
17
18FDTGET_OBJS = $(FDTGET_SRCS:%.c=%.o)
Simon Glass1ede50c2012-01-21 10:14:48 -080019
20
21FDTPUT_SRCS = \
22 fdtput.c \
23 util.c
24
25FDTPUT_OBJS = $(FDTPUT_SRCS:%.c=%.o)
Pantelis Antoniou42409142017-06-14 17:51:11 +030026
27FDTOVERLAY_SRCS = \
28 fdtoverlay.c \
29 util.c
30
31FDTOVERLAY_OBJS = $(FDTOVERLAY_SRCS:%.c=%.o)