mirror of
https://github.com/dgibson/dtc.git
synced 2026-01-22 09:40:33 -05:00
We want to avoid a separate Makefile include for each utility, so this sets up a general one for utilities. Acked-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Simon Glass <sjg@chromium.org>
10 lines
208 B
Text
10 lines
208 B
Text
#
|
|
# This is not a complete Makefile of itself. Instead, it is designed to
|
|
# be easily embeddable into other systems of Makefiles.
|
|
#
|
|
|
|
FTDUMP_SRCS = \
|
|
ftdump.c \
|
|
util.c
|
|
|
|
FTDUMP_OBJS = $(FTDUMP_SRCS:%.c=%.o)
|