blob: e0289229e6a5094ec1d0f840fb4056ea6a403a72 [file] [log] [blame]
Simon Glass9ebd9b42011-09-21 13:32:44 -07001#
2# This is not a complete Makefile of itself. Instead, it is designed to
3# be easily embeddable into other systems of Makefiles.
4#
5
Mike Frysinger8f459c52011-10-25 17:29:24 -04006FDTDUMP_SRCS = \
7 fdtdump.c \
Simon Glass9ebd9b42011-09-21 13:32:44 -07008 util.c
9
Mike Frysinger8f459c52011-10-25 17:29:24 -040010FDTDUMP_OBJS = $(FDTDUMP_SRCS:%.c=%.o)
Simon Glass68d057f2012-01-21 10:14:47 -080011
12
13FDTGET_SRCS = \
14 fdtget.c \
15 util.c
16
17FDTGET_OBJS = $(FDTGET_SRCS:%.c=%.o)
Simon Glass1ede50c2012-01-21 10:14:48 -080018
19
20FDTPUT_SRCS = \
21 fdtput.c \
22 util.c
23
24FDTPUT_OBJS = $(FDTPUT_SRCS:%.c=%.o)
Pantelis Antoniou42409142017-06-14 17:51:11 +030025
26FDTOVERLAY_SRCS = \
27 fdtoverlay.c \
28 util.c
29
30FDTOVERLAY_OBJS = $(FDTOVERLAY_SRCS:%.c=%.o)